wasi-crypto 0.1.15

Experimental implementation of the WASI cryptography APIs
Documentation
1
2
3
4
5
6
7
8
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub struct Version(pub u64);

impl Version {
    pub const ALL: Version = Version(0xff00_0000_0000_0000);
    pub const LATEST: Version = Version(0xff00_0000_0000_0000);
    pub const UNSPECIFIED: Version = Version(0xff00_0000_0000_0000);
}