pqc/common/sha2.h

8 lines
157 B
C
Raw Normal View History

2019-01-15 14:35:25 +00:00
#ifndef SHA2_H
#define SHA2_H
2019-02-17 10:54:38 +00:00
int sha384(uint8_t *out, const uint8_t *in, size_t inlen);
int sha512(uint8_t *out, const uint8_t *in, size_t inlen);
2019-01-15 14:35:25 +00:00
#endif