pub unsafe extern "C" fn ocrypto_aes_ctr_encrypt(
ct: *mut u8,
pt: *const u8,
pt_len: usize,
key: *const u8,
size: usize,
iv: *const u8,
)Expand description
AES-CTR encryption.
ct- Ciphertext.pt- Plaintext.pt_len- Length of *pt- and *ct- .key- AES key.size- Key size (16, 24, or 32).iv- Initial vector.
@remark * ct - may be same as * pt - .