pub unsafe extern "C" fn SHA3_384(
output: *mut c_uchar,
input: *const c_uchar,
inputByteLen: usize
) -> c_int
Expand description
Implementation of SHA3-384 [FIPS 202]. @param output Pointer to the output buffer (48 bytes). @param input Pointer to the input message. @param inputByteLen The length of the input message in bytes. @return 0 if successful, 1 otherwise.