Sha256: bdc3db640637230f93fa859bc2715ec5905d911d32817b2fdf3bbf787b98d293
Contents?: true
Size: 323 Bytes
Versions: 24
Compression:
Stored size: 323 Bytes
Contents
#include "crypto_hash.h" size_t crypto_hash_bytes(void) { return crypto_hash_BYTES; } int crypto_hash(unsigned char *out, const unsigned char *in, unsigned long long inlen) { return crypto_hash_sha512(out, in, inlen); } const char * crypto_hash_primitive(void) { return crypto_hash_PRIMITIVE; }
Version data entries
24 entries across 24 versions & 2 rubygems