cryptoxide 0.4.2

pure implementation of various common modern cryptographic algorithms, WASM compatible
Documentation
1
2
3
4
5
6
7
8
9
mod reference;

pub(crate) fn digest_block(state: &mut [u64; 8], block: &[u8]) {
    #[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
    {}
    #[cfg(any(target_arch = "aarch64"))]
    {}
    reference::digest_block(state, block)
}