003 File Manager
Current Path:
/usr/src/sys/contrib/libsodium/src/libsodium/crypto_shorthash
usr
/
src
/
sys
/
contrib
/
libsodium
/
src
/
libsodium
/
crypto_shorthash
/
📁
..
📄
crypto_shorthash.c
(629 B)
📁
siphash24
Editing: crypto_shorthash.c
#include "crypto_shorthash.h" #include "randombytes.h" size_t crypto_shorthash_bytes(void) { return crypto_shorthash_BYTES; } size_t crypto_shorthash_keybytes(void) { return crypto_shorthash_KEYBYTES; } const char * crypto_shorthash_primitive(void) { return crypto_shorthash_PRIMITIVE; } int crypto_shorthash(unsigned char *out, const unsigned char *in, unsigned long long inlen, const unsigned char *k) { return crypto_shorthash_siphash24(out, in, inlen, k); } void crypto_shorthash_keygen(unsigned char k[crypto_shorthash_KEYBYTES]) { randombytes_buf(k, crypto_shorthash_KEYBYTES); }
Upload File
Create Folder