pakery-core 0.2.0

Shared utilities for PAKE protocol implementations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Cryptographic trait abstractions for PAKE protocols.

pub mod dh;
pub mod group;
pub mod hash;
pub mod kdf;
pub mod ksf;
pub mod mac;
pub mod oprf;

pub use dh::DhGroup;
pub use group::CpaceGroup;
pub use hash::Hash;
pub use kdf::Kdf;
pub use ksf::{IdentityKsf, Ksf};
pub use mac::Mac;
pub use oprf::{Oprf, OprfClientState};