4d0082fa43
Also fixes some tidy issues Not sure why my local clang-tidy doesn't complain
10 lines
227 B
C
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
|