mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +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
|
|
@ -21,8 +21,8 @@
|
|||
#define DEFAULT_THREADS 1
|
||||
#define DEFAULT_EXPONENT 0x10001
|
||||
|
||||
extern NSSLOWKEYPrivateKey *getDefaultRSAPrivateKey(void);
|
||||
extern NSSLOWKEYPublicKey *getDefaultRSAPublicKey(void);
|
||||
extern NSSLOWKEYPrivateKey *getDefaultRSAPrivateKey(int);
|
||||
extern NSSLOWKEYPublicKey *getDefaultRSAPublicKey(int);
|
||||
|
||||
secuPWData pwData = { PW_NONE, NULL };
|
||||
|
||||
|
|
@ -580,9 +580,9 @@ main(int argc, char **argv)
|
|||
/* use a hardcoded key */
|
||||
printf("Using hardcoded %ld bits key.\n", keybits);
|
||||
if (doPub) {
|
||||
pubKey = getDefaultRSAPublicKey();
|
||||
pubKey = getDefaultRSAPublicKey(keybits);
|
||||
} else {
|
||||
privKey = getDefaultRSAPrivateKey();
|
||||
privKey = getDefaultRSAPrivateKey(keybits);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue