Replace NSS with Pale Moon's

This commit is contained in:
wuggy 2026-06-29 21:29:25 +01:00
commit 8c2e376f94
2870 changed files with 1762232 additions and 1374220 deletions

View file

@ -8,7 +8,19 @@
#define SGN_SUFFIX ".chk"
#define NSS_SIGN_CHK_MAGIC1 0xf1
#define NSS_SIGN_CHK_MAGIC2 0xc5
#define NSS_SIGN_CHK_MAJOR_VERSION 0x01
#define NSS_SIGN_CHK_MINOR_VERSION 0x02
/* new hmac based signatures */
#define NSS_SIGN_CHK_MAJOR_VERSION 0x02
#define NSS_SIGN_CHK_MINOR_VERSION 0x01
#define NSS_SIGN_CHK_TYPE_FLAGS 0xff000000
#define NSS_SIGN_CHK_FLAG_HMAC 0x80000000
typedef struct NSSSignChkHeaderStr NSSSignChkHeader;
struct NSSSignChkHeaderStr {
unsigned char magic1;
unsigned char magic2;
unsigned char majorVersion;
unsigned char minorVersion;
unsigned char offset[4];
unsigned char type[4];
};
#endif /* _SHSIGN_H_ */