1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 23:48:58 +00:00
pqcrypto/common/sha2.h
Thom Wiggers 4d0082fa43
Add travis config
Also fixes some tidy issues

Not sure why my local clang-tidy doesn't complain
2019-01-16 14:54:24 +01:00

10 lines
227 B
C

#ifndef SHA2_H
#define SHA2_H
int sha384(unsigned char *out, const unsigned char *in,
unsigned long long inlen);
int sha512(unsigned char *out, const unsigned char *in,
unsigned long long inlen);
#endif