pub unsafe extern "C" fn ocrypto_aes_gcm_init_iv(
    ctx: *mut ocrypto_aes_gcm_ctx,
    iv: *const u8,
    iv_len: usize
)
Expand description

AES-GCM iv initialization.

The context * ctx - is initialized using the given initial vector * iv - .

  • ctx - Context.
  • iv - Initial vector.
  • iv_len - Length of * iv - .