mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
Update NSS to 3.41
This commit is contained in:
parent
d5f6e64f43
commit
5f0986e66f
540 changed files with 49568 additions and 10631 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -46,8 +46,8 @@
|
|||
* It's recommend to switch back to 0 after having reached version 98/99.
|
||||
*/
|
||||
#define NSS_BUILTINS_LIBRARY_VERSION_MAJOR 2
|
||||
#define NSS_BUILTINS_LIBRARY_VERSION_MINOR 24
|
||||
#define NSS_BUILTINS_LIBRARY_VERSION "2.24"
|
||||
#define NSS_BUILTINS_LIBRARY_VERSION_MINOR 30
|
||||
#define NSS_BUILTINS_LIBRARY_VERSION "2.30"
|
||||
|
||||
/* These version numbers detail the semantic changes to the ckfw engine. */
|
||||
#define NSS_BUILTINS_HARDWARE_VERSION_MAJOR 1
|
||||
|
|
|
|||
|
|
@ -1604,8 +1604,8 @@ nssCKFWSession_InitPIN(
|
|||
NSS_EXTERN CK_RV
|
||||
nssCKFWSession_SetPIN(
|
||||
NSSCKFWSession *fwSession,
|
||||
NSSItem *newPin,
|
||||
NSSItem *oldPin);
|
||||
const NSSItem *oldPin,
|
||||
NSSItem *newPin);
|
||||
|
||||
/*
|
||||
* nssCKFWSession_GetOperationStateLen
|
||||
|
|
|
|||
|
|
@ -871,7 +871,7 @@ nssCKFWSession_InitPIN(
|
|||
NSS_IMPLEMENT CK_RV
|
||||
nssCKFWSession_SetPIN(
|
||||
NSSCKFWSession *fwSession,
|
||||
NSSItem *oldPin,
|
||||
const NSSItem *oldPin,
|
||||
NSSItem *newPin)
|
||||
{
|
||||
CK_RV error = CKR_OK;
|
||||
|
|
@ -907,7 +907,7 @@ nssCKFWSession_SetPIN(
|
|||
|
||||
error = fwSession->mdSession->SetPIN(fwSession->mdSession, fwSession,
|
||||
fwSession->mdToken, fwSession->fwToken, fwSession->mdInstance,
|
||||
fwSession->fwInstance, oldPin, newPin);
|
||||
fwSession->fwInstance, (NSSItem *)oldPin, newPin);
|
||||
|
||||
return error;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue