michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: /* michael@0: * builtins/constants.c michael@0: * michael@0: * Identification and other constants, all collected here in one place. michael@0: */ michael@0: michael@0: #ifndef NSSBASET_H michael@0: #include "nssbaset.h" michael@0: #endif /* NSSBASET_H */ michael@0: michael@0: #ifndef NSSCKT_H michael@0: #include "nssckt.h" michael@0: #endif /* NSSCKT_H */ michael@0: michael@0: #ifndef NSSCKBI_H michael@0: #include "nssckbi.h" michael@0: #endif /* NSSCKBI_H */ michael@0: michael@0: const CK_VERSION michael@0: nss_builtins_CryptokiVersion = { michael@0: NSS_BUILTINS_CRYPTOKI_VERSION_MAJOR, michael@0: NSS_BUILTINS_CRYPTOKI_VERSION_MINOR }; michael@0: michael@0: const CK_VERSION michael@0: nss_builtins_LibraryVersion = { michael@0: NSS_BUILTINS_LIBRARY_VERSION_MAJOR, michael@0: NSS_BUILTINS_LIBRARY_VERSION_MINOR}; michael@0: michael@0: const CK_VERSION michael@0: nss_builtins_HardwareVersion = { michael@0: NSS_BUILTINS_HARDWARE_VERSION_MAJOR, michael@0: NSS_BUILTINS_HARDWARE_VERSION_MINOR }; michael@0: michael@0: const CK_VERSION michael@0: nss_builtins_FirmwareVersion = { michael@0: NSS_BUILTINS_FIRMWARE_VERSION_MAJOR, michael@0: NSS_BUILTINS_FIRMWARE_VERSION_MINOR }; michael@0: michael@0: const NSSUTF8 michael@0: nss_builtins_ManufacturerID[] = { "Mozilla Foundation" }; michael@0: michael@0: const NSSUTF8 michael@0: nss_builtins_LibraryDescription[] = { "NSS Builtin Object Cryptoki Module" }; michael@0: michael@0: const NSSUTF8 michael@0: nss_builtins_SlotDescription[] = { "NSS Builtin Objects" }; michael@0: michael@0: const NSSUTF8 michael@0: nss_builtins_TokenLabel[] = { "Builtin Object Token" }; michael@0: michael@0: const NSSUTF8 michael@0: nss_builtins_TokenModel[] = { "1" }; michael@0: michael@0: /* should this be e.g. the certdata.txt RCS revision number? */ michael@0: const NSSUTF8 michael@0: nss_builtins_TokenSerialNumber[] = { "1" }; michael@0: