Adding trait implementations (#12)

This commit is contained in:
Kevin Lewi
2021-09-28 19:44:57 -07:00
committed by GitHub
parent 4206fdbf48
commit 85fb480b78
6 changed files with 330 additions and 175 deletions
+4 -1
View File
@@ -459,6 +459,8 @@
//!
//! # Features
//!
//! - The `p256` feature enables using p256 as the underlying group for the [Ciphersuite] choice
//!
//! - The `serialize` feature, enabled by default, provides convenience functions for serializing and deserializing with
//! [serde](https://serde.rs/).
//!
@@ -472,9 +474,10 @@
extern crate alloc;
#[macro_use]
mod impls;
#[macro_use]
mod serialization;
mod ciphersuite;
pub mod errors;
pub mod group;