From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- security/nss/cmd/pkix-errcodes/Makefile | 47 ++++++++++++++++++++++++ security/nss/cmd/pkix-errcodes/manifest.mn | 15 ++++++++ security/nss/cmd/pkix-errcodes/pkix-errcodes.c | 34 +++++++++++++++++ security/nss/cmd/pkix-errcodes/pkix-errcodes.gyp | 24 ++++++++++++ 4 files changed, 120 insertions(+) create mode 100644 security/nss/cmd/pkix-errcodes/Makefile create mode 100644 security/nss/cmd/pkix-errcodes/manifest.mn create mode 100644 security/nss/cmd/pkix-errcodes/pkix-errcodes.c create mode 100644 security/nss/cmd/pkix-errcodes/pkix-errcodes.gyp (limited to 'security/nss/cmd/pkix-errcodes') diff --git a/security/nss/cmd/pkix-errcodes/Makefile b/security/nss/cmd/pkix-errcodes/Makefile new file mode 100644 index 0000000000..6e1d4ecdfc --- /dev/null +++ b/security/nss/cmd/pkix-errcodes/Makefile @@ -0,0 +1,47 @@ +#! gmake +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +####################################################################### +# (1) Include initial platform-independent assignments (MANDATORY). # +####################################################################### + +include manifest.mn + +####################################################################### +# (2) Include "global" configuration information. (OPTIONAL) # +####################################################################### + +include $(CORE_DEPTH)/coreconf/config.mk + +####################################################################### +# (3) Include "component" configuration information. (OPTIONAL) # +####################################################################### + +####################################################################### +# (4) Include "local" platform-dependent assignments (OPTIONAL). # +####################################################################### + +include ../platlibs.mk + +####################################################################### +# (5) Execute "global" rules. (OPTIONAL) # +####################################################################### + +include $(CORE_DEPTH)/coreconf/rules.mk + +####################################################################### +# (6) Execute "component" rules. (OPTIONAL) # +####################################################################### + + + +####################################################################### +# (7) Execute "local" rules. (OPTIONAL). # +####################################################################### + + +include ../platrules.mk + diff --git a/security/nss/cmd/pkix-errcodes/manifest.mn b/security/nss/cmd/pkix-errcodes/manifest.mn new file mode 100644 index 0000000000..bef0636921 --- /dev/null +++ b/security/nss/cmd/pkix-errcodes/manifest.mn @@ -0,0 +1,15 @@ +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +CORE_DEPTH = ../.. + +MODULE = nss + +CSRCS = pkix-errcodes.c + +REQUIRES = seccmd + +PROGRAM = pkix-errcodes + diff --git a/security/nss/cmd/pkix-errcodes/pkix-errcodes.c b/security/nss/cmd/pkix-errcodes/pkix-errcodes.c new file mode 100644 index 0000000000..51608e49e8 --- /dev/null +++ b/security/nss/cmd/pkix-errcodes/pkix-errcodes.c @@ -0,0 +1,34 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +/* + * dumpcert.c + * + * dump certificate sample application + * + */ + +#include + +#include "pkix.h" +#include "pkixt.h" +#include "pkix_error.h" + +#undef PKIX_ERRORENTRY +#define PKIX_ERRORENTRY(name, desc, plerr) #name + +const char *const PKIX_ErrorNames[] = { +#include "pkix_errorstrings.h" +}; + +#undef PKIX_ERRORENTRY + +int +main(int argc, char **argv) +{ + int i = 0; + for (; i < PKIX_NUMERRORCODES; ++i) { + printf("code %d %s\n", i, PKIX_ErrorNames[i]); + } + return 0; +} diff --git a/security/nss/cmd/pkix-errcodes/pkix-errcodes.gyp b/security/nss/cmd/pkix-errcodes/pkix-errcodes.gyp new file mode 100644 index 0000000000..e305c07f81 --- /dev/null +++ b/security/nss/cmd/pkix-errcodes/pkix-errcodes.gyp @@ -0,0 +1,24 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +{ + 'includes': [ + '../../coreconf/config.gypi', + '../../cmd/platlibs.gypi' + ], + 'targets': [ + { + 'target_name': 'pkix-errcodes', + 'type': 'executable', + 'sources': [ + 'pkix-errcodes.c' + ], + 'dependencies': [ + '<(DEPTH)/exports.gyp:nss_exports' + ] + } + ], + 'variables': { + 'module': 'nss' + } +} \ No newline at end of file -- cgit v1.2.3