implementations.h 433 B

1234567891011
  1. #ifndef implementations_H
  2. #define implementations_H
  3. int _crypto_generichash_blake2b_pick_best_implementation(void);
  4. int _crypto_onetimeauth_poly1305_pick_best_implementation(void);
  5. int _crypto_pwhash_argon2_pick_best_implementation(void);
  6. int _crypto_scalarmult_curve25519_pick_best_implementation(void);
  7. int _crypto_stream_chacha20_pick_best_implementation(void);
  8. int _crypto_stream_salsa20_pick_best_implementation(void);
  9. #endif