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