mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 18:07: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
|
|
@ -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_ */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue