implementations.h 462 B

12345678910111213
  1. #ifndef implementations_H
  2. #define implementations_H
  3. #include "private/quirks.h"
  4. int _crypto_generichash_blake2b_pick_best_implementation(void);
  5. int _crypto_onetimeauth_poly1305_pick_best_implementation(void);
  6. int _crypto_pwhash_argon2_pick_best_implementation(void);
  7. int _crypto_scalarmult_curve25519_pick_best_implementation(void);
  8. int _crypto_stream_chacha20_pick_best_implementation(void);
  9. int _crypto_stream_salsa20_pick_best_implementation(void);
  10. #endif