ysc1 0.1.1

YSC1 (Yeun's Stream Cipher 1) based on the Amaryllis-1024 specification
Documentation
1
2
3
4
5
6
7
8
9
use cfg_if::cfg_if;

cfg_if! {
    if #[cfg(feature = "ysc1_simd")] {
        pub(crate) mod simd;
    } else {
        pub(crate) mod soft;
    }
}