diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-06-27 00:45:42 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-06-27 00:45:42 +0200 |
commit | 3c568a5681bac0a84f7a49697951780170ad182c (patch) | |
tree | be4fc0e3b5849d3b5282bdabe981698ecce31385 /security/nss/lib/softoken/lgglue.c | |
parent | 4b188510af097627f117482dfc7c3d308c845385 (diff) | |
download | UXP-3c568a5681bac0a84f7a49697951780170ad182c.tar UXP-3c568a5681bac0a84f7a49697951780170ad182c.tar.gz UXP-3c568a5681bac0a84f7a49697951780170ad182c.tar.lz UXP-3c568a5681bac0a84f7a49697951780170ad182c.tar.xz UXP-3c568a5681bac0a84f7a49697951780170ad182c.zip |
Update NSS to 3.41.1 (custom)
This resolves #82
Diffstat (limited to 'security/nss/lib/softoken/lgglue.c')
-rw-r--r-- | security/nss/lib/softoken/lgglue.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/security/nss/lib/softoken/lgglue.c b/security/nss/lib/softoken/lgglue.c index 94f054129..67f17943b 100644 --- a/security/nss/lib/softoken/lgglue.c +++ b/security/nss/lib/softoken/lgglue.c @@ -171,6 +171,8 @@ sftkdb_encrypt_stub(PLArenaPool *arena, SDB *sdb, SECItem *plainText, { SFTKDBHandle *handle = sdb->app_private; SECStatus rv; + SECItem *key; + int iterationCount; if (handle == NULL) { return SECFailure; @@ -192,9 +194,15 @@ sftkdb_encrypt_stub(PLArenaPool *arena, SDB *sdb, SECItem *plainText, /* PORT_SetError */ return SECFailure; } + if (handle->newKey) { + key = handle->newKey; + iterationCount = handle->newDefaultIterationCount; + } else { + key = &handle->passwordKey; + iterationCount = handle->defaultIterationCount; + } - rv = sftkdb_EncryptAttribute(arena, - handle->newKey ? handle->newKey : &handle->passwordKey, + rv = sftkdb_EncryptAttribute(arena, key, iterationCount, plainText, cipherText); PZ_Unlock(handle->passwordLock); |