crypto_sign.h 626 B

12345678910111213141516
  1. #ifndef crypto_sign_H
  2. #define crypto_sign_H
  3. #include "crypto_sign_ed25519.h"
  4. #define crypto_sign crypto_sign_ed25519_ref10
  5. #define crypto_sign_open crypto_sign_ed25519_ref10_open
  6. #define crypto_sign_keypair crypto_sign_ed25519_ref10_keypair
  7. #define crypto_sign_BYTES crypto_sign_ed25519_ref10_BYTES
  8. #define crypto_sign_PUBLICKEYBYTES crypto_sign_ed25519_ref10_PUBLICKEYBYTES
  9. #define crypto_sign_SECRETKEYBYTES crypto_sign_ed25519_ref10_SECRETKEYBYTES
  10. #define crypto_sign_PRIMITIVE "ed25519"
  11. #define crypto_sign_IMPLEMENTATION crypto_sign_ed25519_IMPLEMENTATION
  12. #define crypto_sign_VERSION crypto_sign_ed25519_VERSION
  13. #endif