security/nss/lib/softoken/softkver.h

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 /*
     2  * Softoken version numbers
     3  *
     4  * This Source Code Form is subject to the terms of the Mozilla Public
     5  * License, v. 2.0. If a copy of the MPL was not distributed with this
     6  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     8 #ifndef _SOFTKVER_H_
     9 #define _SOFTKVER_H_
    11 #ifndef NSS_DISABLE_ECC
    12 #ifdef NSS_ECC_MORE_THAN_SUITE_B
    13 #define SOFTOKEN_ECC_STRING " Extended ECC"
    14 #else
    15 #define SOFTOKEN_ECC_STRING " Basic ECC"
    16 #endif
    17 #else
    18 #define SOFTOKEN_ECC_STRING ""
    19 #endif
    21 /*
    22  * Softoken's major version, minor version, patch level, build number,
    23  * and whether this is a beta release.
    24  *
    25  * The format of the version string should be
    26  *     "<major version>.<minor version>[.<patch level>[.<build number>]][ <ECC>][ <Beta>]"
    27  */
    28 #define SOFTOKEN_VERSION  "3.16.2.3" SOFTOKEN_ECC_STRING
    29 #define SOFTOKEN_VMAJOR   3
    30 #define SOFTOKEN_VMINOR   16
    31 #define SOFTOKEN_VPATCH   2
    32 #define SOFTOKEN_VBUILD   3
    33 #define SOFTOKEN_BETA     PR_FALSE
    35 #endif /* _SOFTKVER_H_ */

mercurial