mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 00:17:32 +09:00
Update NSS to 3.48 while keeping vc2013 hackfix and no-sslkeylogfile intact.
This commit is contained in:
parent
0b9855b841
commit
171849c8e5
351 changed files with 115185 additions and 57946 deletions
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include "blapi.h"
|
||||
|
||||
#define FREEBL_VERSION 0x0315
|
||||
#define FREEBL_VERSION 0x0316
|
||||
|
||||
struct FREEBLVectorStr {
|
||||
|
||||
|
|
@ -765,6 +765,20 @@ struct FREEBLVectorStr {
|
|||
|
||||
/* Version 3.021 came to here */
|
||||
|
||||
SECStatus (*p_CMAC_Init)(CMACContext *ctx, CMACCipher type,
|
||||
const unsigned char *key, unsigned int key_len);
|
||||
CMACContext *(*p_CMAC_Create)(CMACCipher type, const unsigned char *key,
|
||||
unsigned int key_len);
|
||||
SECStatus (*p_CMAC_Begin)(CMACContext *ctx);
|
||||
SECStatus (*p_CMAC_Update)(CMACContext *ctx, const unsigned char *data,
|
||||
unsigned int data_len);
|
||||
SECStatus (*p_CMAC_Finish)(CMACContext *ctx, unsigned char *result,
|
||||
unsigned int *result_len,
|
||||
unsigned int max_result_len);
|
||||
void (*p_CMAC_Destroy)(CMACContext *ctx, PRBool free_it);
|
||||
|
||||
/* Version 3.022 came to here */
|
||||
|
||||
/* Add new function pointers at the end of this struct and bump
|
||||
* FREEBL_VERSION at the beginning of this file. */
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue