wasi-crypto 0.1.13

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

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

use super::*;

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