Sha256: 749e728f50c0f453ab3c8157ccdb8745ce556bc61eccca4f0e79a51fa25c5cba
Contents?: true
Size: 475 Bytes
Versions: 20
Compression:
Stored size: 475 Bytes
Contents
#include "crypto_shorthash.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); }
Version data entries
20 entries across 20 versions & 1 rubygems