ed25519-ref10.h 426 B

123456789
  1. #ifndef ED25519_REF10_H
  2. #define ED25519_REF10_H
  3. int crypto_sign_pk_ref10(unsigned char *pk,unsigned char *sk);
  4. int crypto_sign_ref10(unsigned char *sm,unsigned long long *smlen,const unsigned char *m,unsigned long long mlen,const unsigned char *sk);
  5. int crypto_sign_open_ref10(unsigned char *m,unsigned long long *mlen,const unsigned char *sm,unsigned long long smlen,const unsigned char *pk);
  6. #endif /* ED25519_REF10_H */