| OLD | NEW |
| 1 /* | 1 /* |
| 2 * NSS utility functions | 2 * NSS utility functions |
| 3 * | 3 * |
| 4 * This Source Code Form is subject to the terms of the Mozilla Public | 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 | 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/. */ | 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 7 | 7 |
| 8 #ifndef __nss_h_ | 8 #ifndef __nss_h_ |
| 9 #define __nss_h_ | 9 #define __nss_h_ |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #define _NSS_CUSTOMIZED | 26 #define _NSS_CUSTOMIZED |
| 27 #endif | 27 #endif |
| 28 | 28 |
| 29 /* | 29 /* |
| 30 * NSS's major version, minor version, patch level, build number, and whether | 30 * NSS's major version, minor version, patch level, build number, and whether |
| 31 * this is a beta release. | 31 * this is a beta release. |
| 32 * | 32 * |
| 33 * The format of the version string should be | 33 * The format of the version string should be |
| 34 * "<major version>.<minor version>[.<patch level>[.<build number>]][ <ECC>]
[ <Beta>]" | 34 * "<major version>.<minor version>[.<patch level>[.<build number>]][ <ECC>]
[ <Beta>]" |
| 35 */ | 35 */ |
| 36 #define NSS_VERSION "3.15.1" _NSS_ECC_STRING _NSS_CUSTOMIZED " Beta" | 36 #define NSS_VERSION "3.15.3" _NSS_ECC_STRING _NSS_CUSTOMIZED |
| 37 #define NSS_VMAJOR 3 | 37 #define NSS_VMAJOR 3 |
| 38 #define NSS_VMINOR 15 | 38 #define NSS_VMINOR 15 |
| 39 #define NSS_VPATCH 1 | 39 #define NSS_VPATCH 3 |
| 40 #define NSS_VBUILD 0 | 40 #define NSS_VBUILD 0 |
| 41 #define NSS_BETA PR_TRUE | 41 #define NSS_BETA PR_FALSE |
| 42 | 42 |
| 43 #ifndef RC_INVOKED | 43 #ifndef RC_INVOKED |
| 44 | 44 |
| 45 #include "seccomon.h" | 45 #include "seccomon.h" |
| 46 | 46 |
| 47 typedef struct NSSInitParametersStr NSSInitParameters; | 47 typedef struct NSSInitParametersStr NSSInitParameters; |
| 48 | 48 |
| 49 /* | 49 /* |
| 50 * parameters used to initialize softoken. Mostly strings used to | 50 * parameters used to initialize softoken. Mostly strings used to |
| 51 * internationalize softoken. Memory for the strings are owned by the caller, | 51 * internationalize softoken. Memory for the strings are owned by the caller, |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 /* | 310 /* |
| 311 * Dump the contents of the certificate cache and the temporary cert store. | 311 * Dump the contents of the certificate cache and the temporary cert store. |
| 312 * Use to detect leaked references of certs at shutdown time. | 312 * Use to detect leaked references of certs at shutdown time. |
| 313 */ | 313 */ |
| 314 void nss_DumpCertificateCacheInfo(void); | 314 void nss_DumpCertificateCacheInfo(void); |
| 315 | 315 |
| 316 SEC_END_PROTOS | 316 SEC_END_PROTOS |
| 317 | 317 |
| 318 #endif /* RC_INVOKED */ | 318 #endif /* RC_INVOKED */ |
| 319 #endif /* __nss_h_ */ | 319 #endif /* __nss_h_ */ |
| OLD | NEW |