pqc/common/sha2.h

10 lines
219 B
C
Raw Normal View History

2019-01-15 14:35:25 +00:00
#ifndef SHA2_H
#define SHA2_H
int sha384(unsigned char *output, const unsigned char *input, unsigned long long inlen);
int sha512(unsigned char *output, const unsigned char *input, unsigned long long inlen);
#endif