pub unsafe extern "C" fn ocrypto_hmac_sha512_init(
    ctx: *mut ocrypto_hmac_sha512_ctx,
    key: *const u8,
    key_len: usize
)
Expand description

HMAC-SHA-512 initialization.

The generator state * ctx - is initialized by this function.

  • ctx - Generator state.
  • key - HMAC key.
  • key_len - Length of * key - .