diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-08-26 12:32:00 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-09-25 15:08:30 -0400 |
commit | e5a1cf993765c9343e636f5e85298afd0b489c7f (patch) | |
tree | aff7e4f52777c185c906ba534438f3e5edccb25c /src/ext/ed25519/ref10/ed25519_ref10.h | |
parent | 87ba033cd57e57e10a19ca77005c8c740ae70181 (diff) | |
download | tor-e5a1cf993765c9343e636f5e85298afd0b489c7f.tar.gz tor-e5a1cf993765c9343e636f5e85298afd0b489c7f.zip |
Tweak ref10 keygen APIs to be more sane.
Diffstat (limited to 'src/ext/ed25519/ref10/ed25519_ref10.h')
-rw-r--r-- | src/ext/ed25519/ref10/ed25519_ref10.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ext/ed25519/ref10/ed25519_ref10.h b/src/ext/ed25519/ref10/ed25519_ref10.h index fc10a26700..33a24bd6a4 100644 --- a/src/ext/ed25519/ref10/ed25519_ref10.h +++ b/src/ext/ed25519/ref10/ed25519_ref10.h @@ -3,6 +3,8 @@ #define SRC_EXT_ED25519_REF10_H_INCLUDED_ #include <torint.h> +int ed25519_ref10_seckey(unsigned char *sk); +int ed25519_ref10_pubkey(unsigned char *pk,const unsigned char *sk); int ed25519_ref10_keygen(unsigned char *pk,unsigned char *sk); int ed25519_ref10_open( unsigned char *m,uint64_t *mlen, |