crypto2 0.1.2

cryptographic algorithms
1
2
3
4
5
6
7
8
9
10
#[cfg(target_arch = "x86")]
use core::arch::x86::*;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64::*;

use super::generic;

// TODO: 
//      SIMD 并行处理多个 BLOCK 数据参考: https://github.com/mjosaarinen/sm4ni