security/nss/lib/ckfw/builtins/constants.c

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 4
michael@0 5 /*
michael@0 6 * builtins/constants.c
michael@0 7 *
michael@0 8 * Identification and other constants, all collected here in one place.
michael@0 9 */
michael@0 10
michael@0 11 #ifndef NSSBASET_H
michael@0 12 #include "nssbaset.h"
michael@0 13 #endif /* NSSBASET_H */
michael@0 14
michael@0 15 #ifndef NSSCKT_H
michael@0 16 #include "nssckt.h"
michael@0 17 #endif /* NSSCKT_H */
michael@0 18
michael@0 19 #ifndef NSSCKBI_H
michael@0 20 #include "nssckbi.h"
michael@0 21 #endif /* NSSCKBI_H */
michael@0 22
michael@0 23 const CK_VERSION
michael@0 24 nss_builtins_CryptokiVersion = {
michael@0 25 NSS_BUILTINS_CRYPTOKI_VERSION_MAJOR,
michael@0 26 NSS_BUILTINS_CRYPTOKI_VERSION_MINOR };
michael@0 27
michael@0 28 const CK_VERSION
michael@0 29 nss_builtins_LibraryVersion = {
michael@0 30 NSS_BUILTINS_LIBRARY_VERSION_MAJOR,
michael@0 31 NSS_BUILTINS_LIBRARY_VERSION_MINOR};
michael@0 32
michael@0 33 const CK_VERSION
michael@0 34 nss_builtins_HardwareVersion = {
michael@0 35 NSS_BUILTINS_HARDWARE_VERSION_MAJOR,
michael@0 36 NSS_BUILTINS_HARDWARE_VERSION_MINOR };
michael@0 37
michael@0 38 const CK_VERSION
michael@0 39 nss_builtins_FirmwareVersion = {
michael@0 40 NSS_BUILTINS_FIRMWARE_VERSION_MAJOR,
michael@0 41 NSS_BUILTINS_FIRMWARE_VERSION_MINOR };
michael@0 42
michael@0 43 const NSSUTF8
michael@0 44 nss_builtins_ManufacturerID[] = { "Mozilla Foundation" };
michael@0 45
michael@0 46 const NSSUTF8
michael@0 47 nss_builtins_LibraryDescription[] = { "NSS Builtin Object Cryptoki Module" };
michael@0 48
michael@0 49 const NSSUTF8
michael@0 50 nss_builtins_SlotDescription[] = { "NSS Builtin Objects" };
michael@0 51
michael@0 52 const NSSUTF8
michael@0 53 nss_builtins_TokenLabel[] = { "Builtin Object Token" };
michael@0 54
michael@0 55 const NSSUTF8
michael@0 56 nss_builtins_TokenModel[] = { "1" };
michael@0 57
michael@0 58 /* should this be e.g. the certdata.txt RCS revision number? */
michael@0 59 const NSSUTF8
michael@0 60 nss_builtins_TokenSerialNumber[] = { "1" };
michael@0 61

mercurial