pub unsafe extern "C" fn ocrypto_sha256(
r: *mut u8,
in_: *const u8,
in_len: usize,
)Expand description
SHA-256 hash.
The SHA-256 hash of a given input message * in - is computed and put into * r - .
r- Generated hash.in- Input data.in_len- Length of *in- .