tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

ed25519-ref10.h (426B)


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