HKDF for CTAP2.1 (#290)

* implements hkdf, both regular and FIDO specific

* improved documentation

* constant usage in function return type
This commit is contained in:
kaczmarczyck
2021-03-03 16:33:25 +01:00
committed by GitHub
parent f11a838cc7
commit 5e9c32dff5
2 changed files with 227 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ pub mod cbc;
mod ec;
pub mod ecdh;
pub mod ecdsa;
pub mod hkdf;
pub mod hmac;
pub mod rng256;
pub mod sha256;