diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-06-27 18:21:46 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-06-27 18:21:46 -0400 |
commit | 733ce556ad6a59a111b63a860904799c30513a24 (patch) | |
tree | 127360e8a44f78ad2516beb866f57affa716d5d0 | |
parent | c0f0351e06f30b81c77d853a7f90c55309b602bb (diff) | |
parent | 3f940415897ec905859314fe2bf129951cd54678 (diff) | |
download | tor-733ce556ad6a59a111b63a860904799c30513a24.tar.gz tor-733ce556ad6a59a111b63a860904799c30513a24.zip |
Merge branch 'asn_bug22006_final_squashed'
-rw-r--r-- | src/common/crypto_ed25519.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/crypto_ed25519.c b/src/common/crypto_ed25519.c index 6ebb2a78b9..1a6d19b97b 100644 --- a/src/common/crypto_ed25519.c +++ b/src/common/crypto_ed25519.c @@ -783,7 +783,7 @@ ed25519_validate_pubkey(const ed25519_public_key_t *pubkey) /* First check that we were not given the identity element */ if (ed25519_point_is_identity_element(pubkey->pubkey)) { - log_warn(LD_CRYPTO, "ed25519 pubkey is the identity\n"); + log_warn(LD_CRYPTO, "ed25519 pubkey is the identity"); return -1; } @@ -792,12 +792,12 @@ ed25519_validate_pubkey(const ed25519_public_key_t *pubkey) * identity element is returned. */ if (get_ed_impl()->ed25519_scalarmult_with_group_order(result, pubkey->pubkey) < 0) { - log_warn(LD_CRYPTO, "ed25519 group order scalarmult failed\n"); + log_warn(LD_CRYPTO, "ed25519 group order scalarmult failed"); return -1; } if (!ed25519_point_is_identity_element(result)) { - log_warn(LD_CRYPTO, "ed25519 validation failed\n"); + log_warn(LD_CRYPTO, "ed25519 validation failed"); return -1; } |