diff options
Diffstat (limited to 'security/nss/lib/pk11wrap/pk11pk12.c')
-rw-r--r-- | security/nss/lib/pk11wrap/pk11pk12.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/nss/lib/pk11wrap/pk11pk12.c b/security/nss/lib/pk11wrap/pk11pk12.c index 360c03bd40..c6d2f3c872 100644 --- a/security/nss/lib/pk11wrap/pk11pk12.c +++ b/security/nss/lib/pk11wrap/pk11pk12.c @@ -411,7 +411,7 @@ PK11_ImportAndReturnPrivateKey(PK11SlotInfo *slot, SECKEYRawPrivateKey *lpk, goto loser; } if (PK11_IsInternal(slot)) { - PK11_SETATTRS(attrs, CKA_NETSCAPE_DB, + PK11_SETATTRS(attrs, CKA_NSS_DB, publicValue->data, publicValue->len); attrs++; } @@ -450,7 +450,7 @@ PK11_ImportAndReturnPrivateKey(PK11SlotInfo *slot, SECKEYRawPrivateKey *lpk, * this dh key. We have a netscape only CKA_ value to do this. * Only send it to internal slots */ if (PK11_IsInternal(slot)) { - PK11_SETATTRS(attrs, CKA_NETSCAPE_DB, + PK11_SETATTRS(attrs, CKA_NSS_DB, publicValue->data, publicValue->len); attrs++; } @@ -483,7 +483,7 @@ PK11_ImportAndReturnPrivateKey(PK11SlotInfo *slot, SECKEYRawPrivateKey *lpk, goto loser; } if (PK11_IsInternal(slot)) { - PK11_SETATTRS(attrs, CKA_NETSCAPE_DB, + PK11_SETATTRS(attrs, CKA_NSS_DB, lpk->u.ec.publicValue.data, lpk->u.ec.publicValue.len); attrs++; @@ -535,7 +535,7 @@ PK11_ImportAndReturnPrivateKey(PK11SlotInfo *slot, SECKEYRawPrivateKey *lpk, } } - rv = PK11_CreateNewObject(slot, CK_INVALID_SESSION, + rv = PK11_CreateNewObject(slot, CK_INVALID_HANDLE, theTemplate, templateCount, isPerm, &objectID); /* create and return a SECKEYPrivateKey */ |