pub unsafe extern "C" fn ocrypto_sha224_update(
    ctx: *mut ocrypto_sha224_ctx,
    in_: *const u8,
    in_len: usize
)
Expand description

SHA-224 incremental data input.

The generator state * ctx - is updated to hash a message chunk * in - .

This function can be called repeatedly until the whole message is processed.

  • ctx - Generator state.
  • in - Input data.
  • in_len - Length of * in - .

@remark Initialization of the generator state * ctx - through * ocrypto_sha224_init - is required before this function can be called.