Sha256: 14b2f9359d36a910ff921fbcb3bfd78d0101899f54f9bd7ce6a6f557ac9268e2
Contents?: true
Size: 335 Bytes
Versions: 6
Compression:
Stored size: 335 Bytes
Contents
#define TEST_NAME "hash3" #include "cmptest.h" static unsigned char x[] = "testing\n"; static unsigned char h[crypto_hash_BYTES]; int main(void) { size_t i; crypto_hash(h, x, sizeof x - 1U); for (i = 0; i < crypto_hash_BYTES; ++i) { printf("%02x", (unsigned int) h[i]); } printf("\n"); return 0; }
Version data entries
6 entries across 6 versions & 2 rubygems