diff options
author | Craig Disselkoen <cdisselk@cs.ucsd.edu> | 2019-12-06 16:06:30 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-12-06 16:06:30 +0100 |
commit | d927df43e6af72869900b65e826f985b345bb509 (patch) | |
tree | 9bfb893c96ebc7df89584b9bb9bf657f6c95b746 /security | |
parent | 9811aa2e155a4389898f3cf1a5ffb38e69497bdd (diff) | |
download | uxp-d927df43e6af72869900b65e826f985b345bb509.tar.gz |
[NSS] Bug 1586176 - EncryptUpdate should use maxout not block size.
Diffstat (limited to 'security')
-rw-r--r-- | security/nss/lib/softoken/pkcs11c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/nss/lib/softoken/pkcs11c.c b/security/nss/lib/softoken/pkcs11c.c index 327a67d5c0..4837961f14 100644 --- a/security/nss/lib/softoken/pkcs11c.c +++ b/security/nss/lib/softoken/pkcs11c.c @@ -1285,7 +1285,7 @@ NSC_EncryptUpdate(CK_SESSION_HANDLE hSession, } /* encrypt the current padded data */ rv = (*context->update)(context->cipherInfo, pEncryptedPart, - &padoutlen, context->blockSize, context->padBuf, + &padoutlen, maxout, context->padBuf, context->blockSize); if (rv != SECSuccess) { return sftk_MapCryptError(PORT_GetError()); |