summaryrefslogtreecommitdiffstats
path: root/openpgp/src
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src')
-rw-r--r--openpgp/src/crypto/backend/nettle/ecdh.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/crypto/backend/nettle/ecdh.rs b/openpgp/src/crypto/backend/nettle/ecdh.rs
index 75e86133..eea5661d 100644
--- a/openpgp/src/crypto/backend/nettle/ecdh.rs
+++ b/openpgp/src/crypto/backend/nettle/ecdh.rs
@@ -90,7 +90,7 @@ pub fn encrypt<R>(recipient: &Key<key::PublicParts, R>,
// Get the X coordinate, safely dispose of Y.
let (Sx, Sy) = S.as_bytes();
- Protected::from(Sy); // Just a precaution.
+ let _ = Protected::from(Sy); // Just a precaution.
// Zero-pad to the size of the underlying field,
// rounded to the next byte.
@@ -190,7 +190,7 @@ pub fn decrypt<R>(recipient: &Key<key::PublicParts, R>,
// Get the X coordinate, safely dispose of Y.
let (Sx, Sy) = S.as_bytes();
- Protected::from(Sy); // Just a precaution.
+ let _ = Protected::from(Sy); // Just a precaution.
// Zero-pad to the size of the underlying field,
// rounded to the next byte.