crypto_hash

The crypto_hash() function hashes a message 'msg'. It returns a hash 'output'. The output length of 'output' should be at least crypto_hash_BYTES.

void
crypto_hash
()
(
ubyte[] output
,
const(ubyte)[] msg
)

Parameters

output ubyte[]

resulting hash

msg const(ubyte)[]

message

Return Value

Type: void

sha512 hash

Meta