raycrypt 0.3.1

Encrypt at the speed of light
Documentation
1
2
3
4
5
6
7
8
9
use cfg_if::cfg_if;
pub mod fallback;

cfg_if! {
    if #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] {
        pub mod avx2;
        pub mod sse2;
    }
}