crypto_auth_hmacsha512256

The crypto_auth_hmacsha512256() function authenticates a message message using the secret key skey, and puts the authenticator into mac. Returns 0? on success.

  1. alias crypto_auth_hmacsha512256 = deimos.sodium.crypto_auth_hmacsha512256.crypto_auth_hmacsha512256
  2. bool crypto_auth_hmacsha512256(ubyte[crypto_auth_hmacsha512256_BYTES] mac, ubyte[] message, ubyte[crypto_auth_hmacsha512256_KEYBYTES] skey)
    pragma(inline, true) @nogc pure @trusted
    bool
    crypto_auth_hmacsha512256
    (
    out ubyte[crypto_auth_hmacsha512256_BYTES] mac
    ,
    scope const ubyte[] message
    ,
    scope const ubyte[crypto_auth_hmacsha512256_KEYBYTES] skey
    )

Meta