mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 01:47:31 +09:00
Update NSS to 3.32.1-RTM
This commit is contained in:
parent
f29876f120
commit
c91ef9012b
512 changed files with 83203 additions and 16839 deletions
|
|
@ -76,6 +76,7 @@ PRBool PK11_IsReadOnly(PK11SlotInfo *slot);
|
|||
PRBool PK11_IsInternal(PK11SlotInfo *slot);
|
||||
PRBool PK11_IsInternalKeySlot(PK11SlotInfo *slot);
|
||||
char *PK11_GetTokenName(PK11SlotInfo *slot);
|
||||
char *PK11_GetTokenURI(PK11SlotInfo *slot);
|
||||
char *PK11_GetSlotName(PK11SlotInfo *slot);
|
||||
PRBool PK11_NeedLogin(PK11SlotInfo *slot);
|
||||
PRBool PK11_IsFriendly(PK11SlotInfo *slot);
|
||||
|
|
@ -135,6 +136,7 @@ PK11TokenStatus PK11_WaitForTokenEvent(PK11SlotInfo *slot, PK11TokenEvent event,
|
|||
PRBool PK11_NeedPWInit(void);
|
||||
PRBool PK11_TokenExists(CK_MECHANISM_TYPE);
|
||||
SECStatus PK11_GetModInfo(SECMODModule *mod, CK_INFO *info);
|
||||
char *PK11_GetModuleURI(SECMODModule *mod);
|
||||
PRBool PK11_IsFIPS(void);
|
||||
SECMODModule *PK11_GetModule(PK11SlotInfo *slot);
|
||||
|
||||
|
|
@ -642,6 +644,8 @@ SECStatus PK11_TraverseSlotCerts(
|
|||
SECStatus (*callback)(CERTCertificate *, SECItem *, void *),
|
||||
void *arg, void *wincx);
|
||||
CERTCertificate *PK11_FindCertFromNickname(const char *nickname, void *wincx);
|
||||
CERTCertificate *PK11_FindCertFromURI(const char *uri, void *wincx);
|
||||
CERTCertList *PK11_FindCertsFromURI(const char *uri, void *wincx);
|
||||
CERTCertList *PK11_FindCertsFromEmailAddress(const char *email, void *wincx);
|
||||
CERTCertList *PK11_FindCertsFromNickname(const char *nickname, void *wincx);
|
||||
CERTCertificate *PK11_GetCertFromPrivateKey(SECKEYPrivateKey *privKey);
|
||||
|
|
@ -686,6 +690,10 @@ CERTCertList *PK11_ListCerts(PK11CertListType type, void *pwarg);
|
|||
CERTCertList *PK11_ListCertsInSlot(PK11SlotInfo *slot);
|
||||
CERTSignedCrl *PK11_ImportCRL(PK11SlotInfo *slot, SECItem *derCRL, char *url,
|
||||
int type, void *wincx, PRInt32 importOptions, PLArenaPool *arena, PRInt32 decodeOptions);
|
||||
CK_BBOOL PK11_HasAttributeSet(PK11SlotInfo *slot,
|
||||
CK_OBJECT_HANDLE id,
|
||||
CK_ATTRIBUTE_TYPE type,
|
||||
PRBool haslock /* must be set to PR_FALSE */);
|
||||
|
||||
/**********************************************************************
|
||||
* Sign/Verify
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue