mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 16:37:31 +09:00
Replace NSS with Pale Moon's
This commit is contained in:
parent
ff1e5e48bf
commit
8c2e376f94
2870 changed files with 1762232 additions and 1374220 deletions
|
|
@ -538,7 +538,25 @@ struct SECOidDataStr {
|
|||
#define NSS_USE_ALG_IN_SSL_KX 0x00000004 /* used in SSL key exchange */
|
||||
#define NSS_USE_ALG_IN_SSL 0x00000008 /* used in SSL record protocol */
|
||||
#define NSS_USE_POLICY_IN_SSL 0x00000010 /* enable policy in SSL protocol */
|
||||
#define NSS_USE_ALG_RESERVED 0xfffffffc /* may be used in future */
|
||||
#define NSS_USE_ALG_IN_ANY_SIGNATURE 0x00000020 /* used in any signature */
|
||||
#define NSS_USE_ALG_IN_PKCS12 0x00000040 /* used in pkcs12 */
|
||||
#define NSS_USE_DEFAULT_NOT_VALID 0x80000000 /* clear to make the default flag valid */
|
||||
#define NSS_USE_DEFAULT_SSL_ENABLE 0x40000000 /* default cipher suite setting 1=enable */
|
||||
|
||||
/* Combo policy bites */
|
||||
#define NSS_USE_ALG_RESERVED 0x3fffffc0 /* may be used in future */
|
||||
/* Alias of all the signature values. */
|
||||
#define NSS_USE_ALG_IN_SIGNATURE (NSS_USE_ALG_IN_CERT_SIGNATURE | \
|
||||
NSS_USE_ALG_IN_CMS_SIGNATURE | \
|
||||
NSS_USE_ALG_IN_ANY_SIGNATURE)
|
||||
/* all the bits needed for a certificate signature
|
||||
* and only the bits needed for a certificate signature */
|
||||
#define NSS_USE_CERT_SIGNATURE_OK (NSS_USE_ALG_IN_CERT_SIGNATURE | \
|
||||
NSS_USE_ALG_IN_ANY_SIGNATURE)
|
||||
/* all the bits needed for an SMIME signature
|
||||
* and only the bits needed for an SMIME signature */
|
||||
#define NSS_USE_CMS_SIGNATURE_OK (NSS_USE_ALG_IN_CMS_SIGNATURE | \
|
||||
NSS_USE_ALG_IN_ANY_SIGNATURE)
|
||||
|
||||
/* Code MUST NOT SET or CLEAR reserved bits, and must NOT depend on them
|
||||
* being all zeros or having any other known value. The reserved bits
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue