mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-22 23:48:58 +00:00
10 lines
239 B
C
10 lines
239 B
C
#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
|