summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorrelyea%netscape.com <devnull@localhost>2002-08-28 22:13:19 +0000
committerrelyea%netscape.com <devnull@localhost>2002-08-28 22:13:19 +0000
commitdfb77571295f2d0305a1584bb3f14bc02ffb886c (patch)
treea7543cc7344e0fa399daae66c5a5d89f182e0676 /security
parent76762d1a25c890d38ef142aea5832734083e0abb (diff)
downloadnss-hg-dfb77571295f2d0305a1584bb3f14bc02ffb886c.tar.gz
File with version number for applications
Diffstat (limited to 'security')
-rw-r--r--security/nss/lib/ckfw/builtins/nssckbi.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/security/nss/lib/ckfw/builtins/nssckbi.h b/security/nss/lib/ckfw/builtins/nssckbi.h
new file mode 100644
index 000000000..4073f4e0d
--- /dev/null
+++ b/security/nss/lib/ckfw/builtins/nssckbi.h
@@ -0,0 +1,69 @@
+/*
+ * The contents of this file are subject to the Mozilla Public
+ * License Version 1.1 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS
+ * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+ * implied. See the License for the specific language governing
+ * rights and limitations under the License.
+ *
+ * The Original Code is the Netscape security libraries.
+ *
+ * The Initial Developer of the Original Code is Netscape
+ * Communications Corporation. Portions created by Netscape are
+ * Copyright (C) 1994-2000 Netscape Communications Corporation. All
+ * Rights Reserved.
+ *
+ * Contributor(s):
+ *
+ * Alternatively, the contents of this file may be used under the
+ * terms of the GNU General Public License Version 2 or later (the
+ * "GPL"), in which case the provisions of the GPL are applicable
+ * instead of those above. If you wish to allow use of your
+ * version of this file only under the terms of the GPL and not to
+ * allow others to use your version of this file under the MPL,
+ * indicate your decision by deleting the provisions above and
+ * replace them with the notice and other provisions required by
+ * the GPL. If you do not delete the provisions above, a recipient
+ * may use your version of this file under either the MPL or the
+ * GPL.
+ */
+
+#ifndef NSSCKBI_H
+#define NSSCKBI_H
+
+#ifdef DEBUG
+static const char BUILTINS_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$ $Name$";
+#endif /* DEBUG */
+
+
+/*
+ * NSS BUILTINS Version numbers.
+ *
+ * These are the version numbers for the builtins module packaged with
+ * this release on NSS. To determine the version numbers of the builtin
+ * module you are using, use the appropriate PKCS #11 calls.
+ *
+ * These version number details changes to the PKCS #11 interface. They map
+ * to the PKCS #11 spec versions.
+ */
+#define NSS_BUILTINS_CRYPTOKI_VERSION_MAJOR 2
+#define NSS_BUILTINS_CRYPTOKI_VERSION_MINOR 1
+
+/* These are the correct verion numbers that details the changes
+ * to the list of trusted certificates. */
+#define NSS_BUILTINS_LIBRARY_VERISON_MAJOR 1
+#define NSS_BUILTINS_LIBRARY_VERISON_MINOR 2
+
+/* These verion numbers that details the semantic changes to the ckfw engine. */
+#define NSS_BUILTINS_HARDWARE_VERISON_MAJOR 1
+#define NSS_BUILTINS_HARDWARE_VERISON_MINOR 0
+
+/* These verion numbers that details the semantic changes to ckbi itself
+ * (new PKCS #11 objects), etc. */
+#define NSS_BUILTINS_FIRMWARE_VERISON_MAJOR 1
+#define NSS_BUILTINS_FIRMWARE_VERISON_MINOR 0
+
+#endif NSSCKBI_H