- crypto_auth
bool crypto_auth(ubyte[crypto_auth_BYTES] mac, ubyte[] message, ubyte[crypto_auth_KEYBYTES] skey)
- crypto_auth_bytes (from deimos.sodium.crypto_auth)
size_t crypto_auth_bytes() via public
import deimos.sodium.crypto_auth : crypto_auth_BYTES, crypto_auth_bytes, crypto_auth_KEYBYTES, crypto_auth_keybytes, crypto_auth_PRIMITIVE, crypto_auth_keygen;
Undocumented in source.
- crypto_auth_keybytes (from deimos.sodium.crypto_auth)
size_t crypto_auth_keybytes() via public
import deimos.sodium.crypto_auth : crypto_auth_BYTES, crypto_auth_bytes, crypto_auth_KEYBYTES, crypto_auth_keybytes, crypto_auth_PRIMITIVE, crypto_auth_keygen;
Undocumented in source.
- crypto_auth_keygen (from deimos.sodium.crypto_auth)
void crypto_auth_keygen(ubyte[crypto_auth_KEYBYTES] k) via public
import deimos.sodium.crypto_auth : crypto_auth_BYTES, crypto_auth_bytes, crypto_auth_KEYBYTES, crypto_auth_keybytes, crypto_auth_PRIMITIVE, crypto_auth_keygen;
Undocumented in source.
- crypto_auth_primitive
string crypto_auth_primitive()
Undocumented in source. Be warned that the author may not have intended to support it.
- crypto_auth_verify
bool crypto_auth_verify(ubyte[crypto_auth_BYTES] mac, ubyte[] message, ubyte[crypto_auth_KEYBYTES] skey)