Blame SOURCES/nssckbi.h

b4bc2f
/* This Source Code Form is subject to the terms of the Mozilla Public
b4bc2f
 * License, v. 2.0. If a copy of the MPL was not distributed with this
b4bc2f
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
b4bc2f
b4bc2f
#ifndef NSSCKBI_H
b4bc2f
#define NSSCKBI_H
b4bc2f
b4bc2f
/*
b4bc2f
 * NSS BUILTINS Version numbers.
b4bc2f
 *
b4bc2f
 * These are the version numbers for the builtins module packaged with
b4bc2f
 * this release on NSS. To determine the version numbers of the builtin
b4bc2f
 * module you are using, use the appropriate PKCS #11 calls.
b4bc2f
 *
b4bc2f
 * These version numbers detail changes to the PKCS #11 interface. They map
b4bc2f
 * to the PKCS #11 spec versions.
b4bc2f
 */
b4bc2f
#define NSS_BUILTINS_CRYPTOKI_VERSION_MAJOR 2
b4bc2f
#define NSS_BUILTINS_CRYPTOKI_VERSION_MINOR 20
b4bc2f
469a3f
/* These version numbers detail the changes
b4bc2f
 * to the list of trusted certificates.
b4bc2f
 *
b4bc2f
 * The NSS_BUILTINS_LIBRARY_VERSION_MINOR macro needs to be bumped
aa494b
 * whenever we change the list of trusted certificates.
aa494b
 *
aa494b
 * Please use the following rules when increasing the version number:
aa494b
 *
aa494b
 * - starting with version 2.14, NSS_BUILTINS_LIBRARY_VERSION_MINOR
aa494b
 *   must always be an EVEN number (e.g. 16, 18, 20 etc.)
aa494b
 *
aa494b
 * - whenever possible, if older branches require a modification to the
aa494b
 *   list, these changes should be made on the main line of development (trunk),
aa494b
 *   and the older branches should update to the most recent list.
aa494b
 * 
aa494b
 * - ODD minor version numbers are reserved to indicate a snapshot that has
aa494b
 *   deviated from the main line of development, e.g. if it was necessary
aa494b
 *   to modify the list on a stable branch.
aa494b
 *   Once the version has been changed to an odd number (e.g. 2.13) on a branch,
aa494b
 *   it should remain unchanged on that branch, even if further changes are
aa494b
 *   made on that branch.
b4bc2f
 *
b4bc2f
 * NSS_BUILTINS_LIBRARY_VERSION_MINOR is a CK_BYTE.  It's not clear
b4bc2f
 * whether we may use its full range (0-255) or only 0-99 because
b4bc2f
 * of the comment in the CK_VERSION type definition.
aa494b
 * It's recommend to switch back to 0 after having reached version 98/99.
b4bc2f
 */
b01320
#define NSS_BUILTINS_LIBRARY_VERSION_MAJOR 2
e93225
#define NSS_BUILTINS_LIBRARY_VERSION_MINOR 20
e93225
#define NSS_BUILTINS_LIBRARY_VERSION "2.20"
b4bc2f
b4bc2f
/* These version numbers detail the semantic changes to the ckfw engine. */
b4bc2f
#define NSS_BUILTINS_HARDWARE_VERSION_MAJOR 1
b4bc2f
#define NSS_BUILTINS_HARDWARE_VERSION_MINOR 0
b4bc2f
469a3f
/* These version numbers detail the semantic changes to ckbi itself
b4bc2f
 * (new PKCS #11 objects), etc. */
b4bc2f
#define NSS_BUILTINS_FIRMWARE_VERSION_MAJOR 1
b4bc2f
#define NSS_BUILTINS_FIRMWARE_VERSION_MINOR 0
b4bc2f
b4bc2f
#endif /* NSSCKBI_H */