summaryrefslogtreecommitdiff
path: root/lib/ckfw/capi/constants.c
blob: 3498587fc28226bd5b3d28da7eff8f29b7820816 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */

/*
 * ckcapi/constants.c
 *
 * Identification and other constants, all collected here in one place.
 */

#ifndef NSSBASET_H
#include "nssbaset.h"
#endif /* NSSBASET_H */

#ifndef NSSCKT_H
#include "nssckt.h"
#endif /* NSSCKT_H */

#ifndef NSSCAPI_H
#include "nsscapi.h"
#endif /* NSSCAPI_H */

NSS_IMPLEMENT_DATA const CK_VERSION
nss_ckcapi_CryptokiVersion =  {
		NSS_CKCAPI_CRYPTOKI_VERSION_MAJOR,
		NSS_CKCAPI_CRYPTOKI_VERSION_MINOR };

NSS_IMPLEMENT_DATA const NSSUTF8 *
nss_ckcapi_ManufacturerID = (NSSUTF8 *) "Mozilla Foundation";

NSS_IMPLEMENT_DATA const NSSUTF8 *
nss_ckcapi_LibraryDescription = (NSSUTF8 *) "NSS Access to Microsoft Certificate Store";

NSS_IMPLEMENT_DATA const CK_VERSION
nss_ckcapi_LibraryVersion = {
	NSS_CKCAPI_LIBRARY_VERSION_MAJOR,
	NSS_CKCAPI_LIBRARY_VERSION_MINOR};

NSS_IMPLEMENT_DATA const NSSUTF8 *
nss_ckcapi_SlotDescription = (NSSUTF8 *) "Microsoft Certificate Store";

NSS_IMPLEMENT_DATA const CK_VERSION
nss_ckcapi_HardwareVersion = { 
	NSS_CKCAPI_HARDWARE_VERSION_MAJOR,
	NSS_CKCAPI_HARDWARE_VERSION_MINOR };

NSS_IMPLEMENT_DATA const CK_VERSION
nss_ckcapi_FirmwareVersion = { 
	NSS_CKCAPI_FIRMWARE_VERSION_MAJOR,
	NSS_CKCAPI_FIRMWARE_VERSION_MINOR };

NSS_IMPLEMENT_DATA const NSSUTF8 *
nss_ckcapi_TokenLabel = (NSSUTF8 *) "Microsoft Certificate Store";

NSS_IMPLEMENT_DATA const NSSUTF8 *
nss_ckcapi_TokenModel = (NSSUTF8 *) "1";

NSS_IMPLEMENT_DATA const NSSUTF8 *
nss_ckcapi_TokenSerialNumber = (NSSUTF8 *) "1";