-rw-r--r-- 210 ntruprime-20201007/Reference_Implementation/kem/ntrulpr653/subroutines/crypto_hash_sha512.c
#include <stddef.h> #include <openssl/sha.h> #include "crypto_hash_sha512.h" int crypto_hash_sha512(unsigned char *out,const unsigned char *in,unsigned long long inlen) { SHA512(in,inlen,out); return 0; }