-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsha3.h
33 lines (23 loc) · 850 Bytes
/
sha3.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef SHA3_H
#ifdef __cplusplus
# if __GNUC__
# pragma GCC diagnostic ignored "-Wlong-long"
# endif
extern "C" {
#endif
int crypto_hash_shake128(unsigned char *h, const unsigned char *m,
unsigned long long n);
int crypto_hash_shake256(unsigned char *h, const unsigned char *m,
unsigned long long n);
int crypto_hash_sha3224(unsigned char *h, const unsigned char *m,
unsigned long long n);
int crypto_hash_sha3256(unsigned char *h, const unsigned char *m,
unsigned long long n);
int crypto_hash_sha3384(unsigned char *h, const unsigned char *m,
unsigned long long n);
int crypto_hash_sha3512(unsigned char *h, const unsigned char *m,
unsigned long long n);
#ifdef __cplusplus
}
#endif
#endif