mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 17:37:30 +09:00
Update NSS to 3.36.4-RTM
This commit is contained in:
parent
099459dec0
commit
fe96962962
148 changed files with 5550 additions and 5825 deletions
|
|
@ -120,6 +120,10 @@ nssSlot_CreateFromPK11SlotInfo(NSSTrustDomain *td, PK11SlotInfo *nss3slot)
|
|||
/* Grab the slot name from the PKCS#11 fixed-length buffer */
|
||||
rvSlot->base.name = nssUTF8_Duplicate(nss3slot->slot_name, td->arena);
|
||||
rvSlot->lock = (nss3slot->isThreadSafe) ? NULL : nss3slot->sessionLock;
|
||||
rvSlot->isPresentLock = PZ_NewLock(nssiLockOther);
|
||||
rvSlot->isPresentCondition = PR_NewCondVar(rvSlot->isPresentLock);
|
||||
rvSlot->isPresentThread = NULL;
|
||||
rvSlot->lastTokenPingState = nssSlotLastPingState_Reset;
|
||||
return rvSlot;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -636,7 +636,7 @@ PK11_DoPassword(PK11SlotInfo *slot, CK_SESSION_HANDLE session,
|
|||
break;
|
||||
}
|
||||
if (rv == SECSuccess) {
|
||||
if (!PK11_IsFriendly(slot)) {
|
||||
if (!contextSpecific && !PK11_IsFriendly(slot)) {
|
||||
nssTrustDomain_UpdateCachedTokenCerts(slot->nssToken->trustDomain,
|
||||
slot->nssToken);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -164,6 +164,7 @@ CERTCertificate *PK11_MakeCertFromHandle(PK11SlotInfo *slot,
|
|||
SECItem *pk11_GenerateNewParamWithKeyLen(CK_MECHANISM_TYPE type, int keyLen);
|
||||
SECItem *pk11_ParamFromIVWithLen(CK_MECHANISM_TYPE type,
|
||||
SECItem *iv, int keyLen);
|
||||
SECItem *pk11_mkcertKeyID(CERTCertificate *cert);
|
||||
|
||||
SEC_END_PROTOS
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue