blob: b322dbadf3c0dd0d6589a532b78efb01c6e457a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef implementations_H
#define implementations_H
#include "private/quirks.h"
int _crypto_generichash_blake2b_pick_best_implementation(void);
int _crypto_onetimeauth_poly1305_pick_best_implementation(void);
int _crypto_pwhash_argon2_pick_best_implementation(void);
int _crypto_scalarmult_curve25519_pick_best_implementation(void);
int _crypto_stream_chacha20_pick_best_implementation(void);
int _crypto_stream_salsa20_pick_best_implementation(void);
int _crypto_aead_aegis128l_pick_best_implementation(void);
int _crypto_aead_aegis256_pick_best_implementation(void);
#endif
|