doby/src/bin/aes-ni.rs

9 lines
168 B
Rust
Raw Normal View History

2021-06-27 20:35:23 +02:00
cpufeatures::new!(aes_ni, "aes");
fn main() {
println!("AES-NI is {}supported on this device.", if aes_ni::get() {
""
} else {
"NOT "
});
}