wasi-crypto 0.1.4

Experimental implementation of the WASI cryptography APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "pqcrypto")]
mod kyber;

use super::*;
#[cfg(feature = "pqcrypto")]
pub use kyber::*;

#[derive(Clone, Debug)]
pub struct EncapsulatedSecret {
    pub encapsulated_secret: Vec<u8>,
    pub secret: Vec<u8>,
}