mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-07 15:20:31 +00:00
18 lines
433 B
C
18 lines
433 B
C
#ifndef implementations_H
|
|
#define implementations_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);
|
|
|
|
#endif
|