summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openpgp/src/crypto/backend/cng/asymmetric.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/crypto/backend/cng/asymmetric.rs b/openpgp/src/crypto/backend/cng/asymmetric.rs
index b5a3fe1e..c2fd0647 100644
--- a/openpgp/src/crypto/backend/cng/asymmetric.rs
+++ b/openpgp/src/crypto/backend/cng/asymmetric.rs
@@ -324,8 +324,8 @@ impl Decryptor for KeyPair {
}
)?;
- // CNG expects RSA ciphertexts to be aligned to 8 bytes. Since
- // this is a big endian MPI, left-pad with zeroes as necessary
+ // CNG expects RSA ciphertext length to be a multiple of 8
+ // bytes. Since this is a big endian MPI, left-pad it with zeros
let mut _c: Protected = Protected::from(Vec::new());
let missing = (8 - (c.value().len() % 8)) % 8;
let c = if missing > 0 {