1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/common/sha2.h

10 lines
239 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);
2019-01-15 14:35:25 +00:00
#endif