ifpps: Remove unused 'forks' member from struct ifstat
[netsniff-ng.git] / crypto.h
blobd06da00146c654a1612c5578e947d5ba4d9267b1
1 #ifndef CRYPTO_H
2 #define CRYPTO_H
4 #include "crypto_verify_32.h"
5 #include "crypto_hash_sha512.h"
6 #include "crypto_box_curve25519xsalsa20poly1305.h"
7 #include "crypto_scalarmult_curve25519.h"
8 #include "crypto_auth_hmacsha512256.h"
10 #define crypto_box_zerobytes crypto_box_curve25519xsalsa20poly1305_ZEROBYTES
11 #define crypto_box_boxzerobytes crypto_box_curve25519xsalsa20poly1305_BOXZEROBYTES
12 #define crypto_box_noncebytes crypto_box_curve25519xsalsa20poly1305_NONCEBYTES
13 #define crypto_box_beforenmbytes crypto_box_curve25519xsalsa20poly1305_BEFORENMBYTES
14 #define crypto_box_beforenm crypto_box_curve25519xsalsa20poly1305_beforenm
15 #define crypto_box_afternm crypto_box_curve25519xsalsa20poly1305_afternm
16 #define crypto_box_open_afternm crypto_box_curve25519xsalsa20poly1305_open_afternm
17 #define crypto_box_pub_key_size crypto_box_curve25519xsalsa20poly1305_PUBLICKEYBYTES
18 #define crypto_box_sec_key_size crypto_box_curve25519xsalsa20poly1305_SECRETKEYBYTES
20 #endif /* CRYPTO_H */