mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
imported changes from mozilla NSS:
- Bug 1759794 - protect SFTKSlot needLogin with slotLock. r=rrelyea (1bbd8d8c) - Bug 1771497 - Uninitialized value in cert_VerifyCertChainOld. r=nss-reviewers,djackson (23be110c) - Bug 1771495 - unchecked return code in sec_DecodeSigAlg. r=nss-reviewers,djackson (d4fb4b83) - Bug 1771498 - Uninitialized value in cert_ComputeCertType. r=djackson (b28bc4cd) - Bug 1764392 - Add DigitCert Roots r=nss-reviewers,jschanck (0863d9ec) - Bug 1768970 - Add Certainly Roots. r=nss-reviewers,jschanck (6307e75b) - Bug 1770267 - Add E-Tugra Roots. r=nss-reviewers,jschanck (9555008f) - Bug 1759815 - Remove Hellenic Academic 2011 Root. r=nss-reviewers,jschanck (9c2cbf14) - Bug 1764206 - Bump nssckbi version number for June. r=nss-reviewers,jschanck (b3acf3d9)
This commit is contained in:
parent
082405259b
commit
43cfc69b25
10 changed files with 1209 additions and 186 deletions
|
|
@ -291,7 +291,7 @@ CMMF_CertifiedKeyPairUnwrapPrivKey(CMMFCertifiedKeyPair *inKeyPair,
|
|||
cert = CMMF_CertifiedKeyPairGetCertificate(inKeyPair, inCertdb);
|
||||
CERT_FindKeyUsageExtension(cert, &keyUsageValue);
|
||||
if (keyUsageValue.data != NULL) {
|
||||
keyUsage = keyUsageValue.data[3];
|
||||
keyUsage = keyUsageValue.len ? keyUsageValue.data[0] : 0;
|
||||
PORT_Free(keyUsageValue.data);
|
||||
}
|
||||
pubKey = CERT_ExtractPublicKey(cert);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue