mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
re-introduce old nss im too tired for this
This commit is contained in:
parent
3c46be320d
commit
3a838106b9
2871 changed files with 1374431 additions and 1762417 deletions
2
security/nss/cmd/libpkix/pkix_pl/Makefile
Executable file → Normal file
2
security/nss/cmd/libpkix/pkix_pl/Makefile
Executable file → Normal file
|
|
@ -20,6 +20,8 @@ include $(CORE_DEPTH)/coreconf/config.mk
|
|||
# (3) Include "component" configuration information. (OPTIONAL) #
|
||||
#######################################################################
|
||||
|
||||
include $(PKIX_DEPTH)/config.mk
|
||||
|
||||
#######################################################################
|
||||
# (4) Include "local" platform-dependent assignments (OPTIONAL). #
|
||||
#######################################################################
|
||||
|
|
|
|||
0
security/nss/cmd/libpkix/pkix_pl/manifest.mn
Executable file → Normal file
0
security/nss/cmd/libpkix/pkix_pl/manifest.mn
Executable file → Normal file
2
security/nss/cmd/libpkix/pkix_pl/module/Makefile
Executable file → Normal file
2
security/nss/cmd/libpkix/pkix_pl/module/Makefile
Executable file → Normal file
|
|
@ -20,6 +20,8 @@ include $(CORE_DEPTH)/coreconf/config.mk
|
|||
# (3) Include "component" configuration information. (OPTIONAL) #
|
||||
#######################################################################
|
||||
|
||||
include $(PKIX_DEPTH)/config.mk
|
||||
|
||||
#######################################################################
|
||||
# (4) Include "local" platform-dependent assignments (OPTIONAL). #
|
||||
#######################################################################
|
||||
|
|
|
|||
3
security/nss/cmd/libpkix/pkix_pl/module/manifest.mn
Executable file → Normal file
3
security/nss/cmd/libpkix/pkix_pl/module/manifest.mn
Executable file → Normal file
|
|
@ -17,8 +17,7 @@ CSRCS = test_colcertstore.c \
|
|||
test_httpcertstore.c \
|
||||
$(NULL)
|
||||
|
||||
LIBRARY_NAME = pkixtoolmodule
|
||||
SHARED_LIBRARY = $(NULL)
|
||||
LIBRARY_NAME=pkixtoolmodule
|
||||
|
||||
SOURCE_LIB_DIR=$(PKIX_DEPTH)/$(OBJDIR)
|
||||
|
||||
|
|
|
|||
2
security/nss/cmd/libpkix/pkix_pl/pki/Makefile
Executable file → Normal file
2
security/nss/cmd/libpkix/pkix_pl/pki/Makefile
Executable file → Normal file
|
|
@ -20,6 +20,8 @@ include $(CORE_DEPTH)/coreconf/config.mk
|
|||
# (3) Include "component" configuration information. (OPTIONAL) #
|
||||
#######################################################################
|
||||
|
||||
include $(PKIX_DEPTH)/config.mk
|
||||
|
||||
#######################################################################
|
||||
# (4) Include "local" platform-dependent assignments (OPTIONAL). #
|
||||
#######################################################################
|
||||
|
|
|
|||
3
security/nss/cmd/libpkix/pkix_pl/pki/manifest.mn
Executable file → Normal file
3
security/nss/cmd/libpkix/pkix_pl/pki/manifest.mn
Executable file → Normal file
|
|
@ -21,8 +21,7 @@ CSRCS = test_cert.c \
|
|||
test_subjectinfoaccess.c \
|
||||
$(NULL)
|
||||
|
||||
LIBRARY_NAME = pkixtoolpki
|
||||
SHARED_LIBRARY = $(NULL)
|
||||
LIBRARY_NAME=pkixtoolpki
|
||||
|
||||
SOURCE_LIB_DIR=$(PKIX_DEPTH)/$(OBJDIR)
|
||||
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@ test_generalname(int argc, char *argv[])
|
|||
diffInput = "1.2.840.115349";
|
||||
testNameType(PKIX_OID_NAME, goodInput, diffInput, goodInput);
|
||||
|
||||
/*
|
||||
/*
|
||||
* We don't support creating PKIX_EDIPARTY_NAME,
|
||||
* PKIX_IP_NAME, OTHER_NAME, X400_ADDRESS from strings
|
||||
*/
|
||||
|
|
|
|||
2
security/nss/cmd/libpkix/pkix_pl/system/Makefile
Executable file → Normal file
2
security/nss/cmd/libpkix/pkix_pl/system/Makefile
Executable file → Normal file
|
|
@ -20,6 +20,8 @@ include $(CORE_DEPTH)/coreconf/config.mk
|
|||
# (3) Include "component" configuration information. (OPTIONAL) #
|
||||
#######################################################################
|
||||
|
||||
include $(PKIX_DEPTH)/config.mk
|
||||
|
||||
#######################################################################
|
||||
# (4) Include "local" platform-dependent assignments (OPTIONAL). #
|
||||
#######################################################################
|
||||
|
|
|
|||
4
security/nss/cmd/libpkix/pkix_pl/system/manifest.mn
Executable file → Normal file
4
security/nss/cmd/libpkix/pkix_pl/system/manifest.mn
Executable file → Normal file
|
|
@ -30,8 +30,8 @@ CSRCS = test_bigint.c \
|
|||
test_string2.c \
|
||||
$(NULL)
|
||||
|
||||
LIBRARY_NAME = pkixtoolsys
|
||||
SHARED_LIBRARY = $(NULL)
|
||||
|
||||
LIBRARY_NAME=pkixtoolsys
|
||||
|
||||
SOURCE_LIB_DIR=$(PKIX_DEPTH)/$(OBJDIR)
|
||||
|
||||
|
|
|
|||
|
|
@ -118,12 +118,13 @@ test_bigint(int argc, char *argv[])
|
|||
PKIX_UInt32 actualMinorVersion;
|
||||
PKIX_UInt32 j = 0;
|
||||
|
||||
char *bigIntValue[4] = {
|
||||
"03",
|
||||
"ff",
|
||||
"1010101010101010101010101010101010101010",
|
||||
"1010101010101010101010101010101010101010",
|
||||
};
|
||||
char *bigIntValue[4] =
|
||||
{
|
||||
"03",
|
||||
"ff",
|
||||
"1010101010101010101010101010101010101010",
|
||||
"1010101010101010101010101010101010101010",
|
||||
};
|
||||
|
||||
char *badValue[3] = { "00ff", "fff", "-ff" };
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue