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
13
14
15
16
17
18
use crate::array_output::*;
use crate::error::*;
use crate::handles::*;
use crate::key_exchange::*;
use crate::signatures::*;
use crate::version::Version;
use crate::CryptoCtx;

use std::convert::TryFrom;

mod keypair;
mod managed_keypair;
mod publickey;
mod secretkey;

pub use self::keypair::{KeyPair, KeyPairEncoding};
pub use self::publickey::{PublicKey, PublicKeyEncoding};
pub use self::secretkey::{SecretKey, SecretKeyEncoding};