pub unsafe extern "C" fn ocrypto_aes_cmac_prf128(
    prf: *mut u8,
    msg: *const u8,
    msg_len: usize,
    key: *const u8,
    key_len: usize
)
Expand description

AES-CMAC-PRF-128 pseudo random function algorithm.

  • prf - 16 byte PRF output.
  • msg - Message input.
  • msg_len - Message length.
  • key - Key.
  • key_len - Key length.