diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-11-30 12:07:59 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-11-30 12:07:59 -0500 |
commit | ba4a9cf0c094b7a19e1bf44264b1244a23a4b38e (patch) | |
tree | bab81ffaf9bf664f4d699db1c99a67636c445032 /src/common | |
parent | 3030741b5d24e9ae36e6d72c6a8c7d035fde9d2a (diff) | |
parent | f49876d66efbc5679ba7d9d9c6538c763b8e06b5 (diff) | |
download | tor-ba4a9cf0c094b7a19e1bf44264b1244a23a4b38e.tar.gz tor-ba4a9cf0c094b7a19e1bf44264b1244a23a4b38e.zip |
Merge branch 'maint-0.2.5' into maint-0.2.8
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/crypto.c | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c index f7bb8ff1f9..2f7e053c89 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -666,11 +666,21 @@ MOCK_IMPL(int, return 0; } +/** A PEM callback that always reports a failure to get a password */ +static int +pem_no_password_cb(char *buf, int size, int rwflag, void *u) +{ + (void)buf; + (void)size; + (void)rwflag; + (void)u; + return 0; +} + /** Read a PEM-encoded private key from the <b>len</b>-byte string <b>s</b> * into <b>env</b>. Return 0 on success, -1 on failure. If len is -1, * the string is nul-terminated. */ -/* Used here, and used for testing. */ int crypto_pk_read_private_key_from_string(crypto_pk_t *env, const char *s, ssize_t len) @@ -689,7 +699,7 @@ crypto_pk_read_private_key_from_string(crypto_pk_t *env, if (env->key) RSA_free(env->key); - env->key = PEM_read_bio_RSAPrivateKey(b,NULL,NULL,NULL); + env->key = PEM_read_bio_RSAPrivateKey(b,NULL,pem_no_password_cb,NULL); BIO_free(b); @@ -821,7 +831,7 @@ crypto_pk_read_public_key_from_string(crypto_pk_t *env, const char *src, if (env->key) RSA_free(env->key); - env->key = PEM_read_bio_RSAPublicKey(b, NULL, NULL, NULL); + env->key = PEM_read_bio_RSAPublicKey(b, NULL, pem_no_password_cb, NULL); BIO_free(b); if (!env->key) { crypto_log_errors(LOG_WARN, "reading public key from string"); |