OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 #ifndef _PKCS11N_H_ | 5 #ifndef _PKCS11N_H_ |
6 #define _PKCS11N_H_ | 6 #define _PKCS11N_H_ |
7 | 7 |
8 #ifdef DEBUG | |
9 static const char CKT_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
10 #endif /* DEBUG */ | |
11 | |
12 /* | 8 /* |
13 * pkcs11n.h | 9 * pkcs11n.h |
14 * | 10 * |
15 * This file contains the NSS-specific type definitions for Cryptoki | 11 * This file contains the NSS-specific type definitions for Cryptoki |
16 * (PKCS#11). | 12 * (PKCS#11). |
17 */ | 13 */ |
18 | 14 |
19 /* | 15 /* |
20 * NSSCK_VENDOR_NSS | 16 * NSSCK_VENDOR_NSS |
21 * | 17 * |
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 char *parameters, void *moduleSpec); | 457 char *parameters, void *moduleSpec); |
462 | 458 |
463 /* softoken slot ID's */ | 459 /* softoken slot ID's */ |
464 #define SFTK_MIN_USER_SLOT_ID 4 | 460 #define SFTK_MIN_USER_SLOT_ID 4 |
465 #define SFTK_MAX_USER_SLOT_ID 100 | 461 #define SFTK_MAX_USER_SLOT_ID 100 |
466 #define SFTK_MIN_FIPS_USER_SLOT_ID 101 | 462 #define SFTK_MIN_FIPS_USER_SLOT_ID 101 |
467 #define SFTK_MAX_FIPS_USER_SLOT_ID 127 | 463 #define SFTK_MAX_FIPS_USER_SLOT_ID 127 |
468 | 464 |
469 | 465 |
470 #endif /* _PKCS11N_H_ */ | 466 #endif /* _PKCS11N_H_ */ |
OLD | NEW |