security/nss/lib/ckfw/nssmkey/mconstants.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 * nssmkey/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 #include "nssmkey.h"
michael@0 20
michael@0 21 NSS_IMPLEMENT_DATA const CK_VERSION
michael@0 22 nss_ckmk_CryptokiVersion = {
michael@0 23 NSS_CKMK_CRYPTOKI_VERSION_MAJOR,
michael@0 24 NSS_CKMK_CRYPTOKI_VERSION_MINOR };
michael@0 25
michael@0 26 NSS_IMPLEMENT_DATA const NSSUTF8 *
michael@0 27 nss_ckmk_ManufacturerID = (NSSUTF8 *) "Mozilla Foundation";
michael@0 28
michael@0 29 NSS_IMPLEMENT_DATA const NSSUTF8 *
michael@0 30 nss_ckmk_LibraryDescription = (NSSUTF8 *) "NSS Access to Mac OS X Key Ring";
michael@0 31
michael@0 32 NSS_IMPLEMENT_DATA const CK_VERSION
michael@0 33 nss_ckmk_LibraryVersion = {
michael@0 34 NSS_CKMK_LIBRARY_VERSION_MAJOR,
michael@0 35 NSS_CKMK_LIBRARY_VERSION_MINOR};
michael@0 36
michael@0 37 NSS_IMPLEMENT_DATA const NSSUTF8 *
michael@0 38 nss_ckmk_SlotDescription = (NSSUTF8 *) "Mac OS X Key Ring";
michael@0 39
michael@0 40 NSS_IMPLEMENT_DATA const CK_VERSION
michael@0 41 nss_ckmk_HardwareVersion = {
michael@0 42 NSS_CKMK_HARDWARE_VERSION_MAJOR,
michael@0 43 NSS_CKMK_HARDWARE_VERSION_MINOR };
michael@0 44
michael@0 45 NSS_IMPLEMENT_DATA const CK_VERSION
michael@0 46 nss_ckmk_FirmwareVersion = {
michael@0 47 NSS_CKMK_FIRMWARE_VERSION_MAJOR,
michael@0 48 NSS_CKMK_FIRMWARE_VERSION_MINOR };
michael@0 49
michael@0 50 NSS_IMPLEMENT_DATA const NSSUTF8 *
michael@0 51 nss_ckmk_TokenLabel = (NSSUTF8 *) "Mac OS X Key Ring";
michael@0 52
michael@0 53 NSS_IMPLEMENT_DATA const NSSUTF8 *
michael@0 54 nss_ckmk_TokenModel = (NSSUTF8 *) "1";
michael@0 55
michael@0 56 NSS_IMPLEMENT_DATA const NSSUTF8 *
michael@0 57 nss_ckmk_TokenSerialNumber = (NSSUTF8 *) "1";
michael@0 58

mercurial