pub unsafe extern "C" fn ocrypto_aes_ecb_init_dec(
ctx: *mut ocrypto_aes_ecb_ctx,
key: *const u8,
size: usize,
)Expand description
AES-ECB decrypt initialization.
The context * ctx - is initialized using the given key * key - .
ctx- Context.key- AES key.size- Key size (16, 24, or 32 bytes).