Wed, 31 Dec 2014 06:09:35 +0100
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 | * ckcapi/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 NSSCAPI_H |
michael@0 | 20 | #include "nsscapi.h" |
michael@0 | 21 | #endif /* NSSCAPI_H */ |
michael@0 | 22 | |
michael@0 | 23 | NSS_IMPLEMENT_DATA const CK_VERSION |
michael@0 | 24 | nss_ckcapi_CryptokiVersion = { |
michael@0 | 25 | NSS_CKCAPI_CRYPTOKI_VERSION_MAJOR, |
michael@0 | 26 | NSS_CKCAPI_CRYPTOKI_VERSION_MINOR }; |
michael@0 | 27 | |
michael@0 | 28 | NSS_IMPLEMENT_DATA const NSSUTF8 * |
michael@0 | 29 | nss_ckcapi_ManufacturerID = (NSSUTF8 *) "Mozilla Foundation"; |
michael@0 | 30 | |
michael@0 | 31 | NSS_IMPLEMENT_DATA const NSSUTF8 * |
michael@0 | 32 | nss_ckcapi_LibraryDescription = (NSSUTF8 *) "NSS Access to Microsoft Certificate Store"; |
michael@0 | 33 | |
michael@0 | 34 | NSS_IMPLEMENT_DATA const CK_VERSION |
michael@0 | 35 | nss_ckcapi_LibraryVersion = { |
michael@0 | 36 | NSS_CKCAPI_LIBRARY_VERSION_MAJOR, |
michael@0 | 37 | NSS_CKCAPI_LIBRARY_VERSION_MINOR}; |
michael@0 | 38 | |
michael@0 | 39 | NSS_IMPLEMENT_DATA const NSSUTF8 * |
michael@0 | 40 | nss_ckcapi_SlotDescription = (NSSUTF8 *) "Microsoft Certificate Store"; |
michael@0 | 41 | |
michael@0 | 42 | NSS_IMPLEMENT_DATA const CK_VERSION |
michael@0 | 43 | nss_ckcapi_HardwareVersion = { |
michael@0 | 44 | NSS_CKCAPI_HARDWARE_VERSION_MAJOR, |
michael@0 | 45 | NSS_CKCAPI_HARDWARE_VERSION_MINOR }; |
michael@0 | 46 | |
michael@0 | 47 | NSS_IMPLEMENT_DATA const CK_VERSION |
michael@0 | 48 | nss_ckcapi_FirmwareVersion = { |
michael@0 | 49 | NSS_CKCAPI_FIRMWARE_VERSION_MAJOR, |
michael@0 | 50 | NSS_CKCAPI_FIRMWARE_VERSION_MINOR }; |
michael@0 | 51 | |
michael@0 | 52 | NSS_IMPLEMENT_DATA const NSSUTF8 * |
michael@0 | 53 | nss_ckcapi_TokenLabel = (NSSUTF8 *) "Microsoft Certificate Store"; |
michael@0 | 54 | |
michael@0 | 55 | NSS_IMPLEMENT_DATA const NSSUTF8 * |
michael@0 | 56 | nss_ckcapi_TokenModel = (NSSUTF8 *) "1"; |
michael@0 | 57 | |
michael@0 | 58 | NSS_IMPLEMENT_DATA const NSSUTF8 * |
michael@0 | 59 | nss_ckcapi_TokenSerialNumber = (NSSUTF8 *) "1"; |
michael@0 | 60 |