diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-10-18 10:25:00 -0700 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-09-25 15:08:31 -0400 |
commit | ed48b0fe56df2f719cd7cd274c664f7037f98b75 (patch) | |
tree | 178a5709cb8ad0bd200f8d498168c5affac42d71 /src/common/crypto_ed25519.h | |
parent | c75e275574b7a3496cd5050ef75f8d82d075642e (diff) | |
download | tor-ed48b0fe56df2f719cd7cd274c664f7037f98b75.tar.gz tor-ed48b0fe56df2f719cd7cd274c664f7037f98b75.zip |
Support for writing ed25519 public/private components to disk.
This refactors the "== type:tag ==" code from crypto_curve25519.c
Diffstat (limited to 'src/common/crypto_ed25519.h')
-rw-r--r-- | src/common/crypto_ed25519.h | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/common/crypto_ed25519.h b/src/common/crypto_ed25519.h index 35f0125993..f37dd5b770 100644 --- a/src/common/crypto_ed25519.h +++ b/src/common/crypto_ed25519.h @@ -76,8 +76,21 @@ int ed25519_public_from_base64(ed25519_public_key_t *pkey, int ed25519_public_to_base64(char *output, const ed25519_public_key_t *pkey); -/* XXXX write secret keys to disk, load secret keys from disk, read encrypted, - * write encrypted. */ +/* XXXX read encrypted, write encrypted. */ + +int ed25519_seckey_write_to_file(const ed25519_secret_key_t *seckey, + const char *filename, + const char *tag); +int ed25519_seckey_read_from_file(ed25519_secret_key_t *seckey_out, + char **tag_out, + const char *filename); +int ed25519_pubkey_write_to_file(const ed25519_public_key_t *pubkey, + const char *filename, + const char *tag); +int ed25519_pubkey_read_from_file(ed25519_public_key_t *pubkey_out, + char **tag_out, + const char *filename); + #endif |