Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2188)

Unified Diff: crypto/encryptor_nss.cc

Issue 25637004: Update the NSS bug number for the invalid read when AES-CBC decrypting. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crypto/encryptor_nss.cc
===================================================================
--- crypto/encryptor_nss.cc (revision 226247)
+++ crypto/encryptor_nss.cc (working copy)
@@ -101,7 +101,7 @@
if (ciphertext.size() % AES_BLOCK_SIZE != 0) {
// Decryption will fail if the input is not a multiple of the block size.
// PK11_CipherOp has a bug where it will do an invalid memory access before
- // the start of the input, so avoid calling it. (Possibly NSS bug 921687).
+ // the start of the input, so avoid calling it. (NSS bug 922780).
plaintext->clear();
return false;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698