Sha256: f7bbf2cf970921cd0c1cf1738a7a643e3ca9127317cbfa8d626e81b7dd8f138d
Contents?: true
Size: 328 Bytes
Versions: 8
Compression:
Stored size: 328 Bytes
Contents
#include <stdio.h> #define TEST_NAME "hash3" #include "cmptest.h" unsigned char x[] = "testing\n"; unsigned char h[crypto_hash_sha512_BYTES]; int main(void) { size_t i; crypto_hash_sha512(h,x,sizeof x - 1U); for (i = 0;i < crypto_hash_sha512_BYTES;++i) printf("%02x",(unsigned int) h[i]); printf("\n"); return 0; }
Version data entries
8 entries across 8 versions & 1 rubygems