From b7f6024e345619b9fde4b20cb6a3c64a2ea17efe Mon Sep 17 00:00:00 2001 From: Craig Disselkoen Date: Fri, 6 Dec 2019 16:06:30 +0100 Subject: [PATCH] [NSS] Bug 1586176 - EncryptUpdate should use maxout not block size. --- security/nss/lib/softoken/pkcs11c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/nss/lib/softoken/pkcs11c.c b/security/nss/lib/softoken/pkcs11c.c index 7eec3d7ee8..fc5144ad9a 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());