summaryrefslogtreecommitdiffstats
path: root/vendor/openssl-sys/src/aes.rs
blob: ade6e842f49678781169c9a6c4bbfe5e9ff73813 (plain)
1
2
3
4
5
6
7
use libc::*;

pub const AES_ENCRYPT: c_int = 1;
pub const AES_DECRYPT: c_int = 0;

pub const AES_MAXNR: c_int = 14;
pub const AES_BLOCK_SIZE: c_int = 16;