| 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 __SEC_ERR_H_ | 5 #ifndef __SEC_ERR_H_ |
| 6 #define __SEC_ERR_H_ | 6 #define __SEC_ERR_H_ |
| 7 | 7 |
| 8 #include "utilrename.h" | 8 #include "utilrename.h" |
| 9 | 9 |
| 10 #define SEC_ERROR_BASE (-0x2000) | 10 #define SEC_ERROR_BASE (-0x2000) |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 | 199 |
| 200 SEC_ERROR_EXPIRED_PASSWORD = (SEC_ERROR_BASE + 172), | 200 SEC_ERROR_EXPIRED_PASSWORD = (SEC_ERROR_BASE + 172), |
| 201 SEC_ERROR_LOCKED_PASSWORD = (SEC_ERROR_BASE + 173), | 201 SEC_ERROR_LOCKED_PASSWORD = (SEC_ERROR_BASE + 173), |
| 202 | 202 |
| 203 SEC_ERROR_UNKNOWN_PKCS11_ERROR = (SEC_ERROR_BASE + 174), | 203 SEC_ERROR_UNKNOWN_PKCS11_ERROR = (SEC_ERROR_BASE + 174), |
| 204 | 204 |
| 205 SEC_ERROR_BAD_CRL_DP_URL = (SEC_ERROR_BASE + 175), | 205 SEC_ERROR_BAD_CRL_DP_URL = (SEC_ERROR_BASE + 175), |
| 206 | 206 |
| 207 SEC_ERROR_CERT_SIGNATURE_ALGORITHM_DISABLED = (SEC_ERROR_BASE + 176), | 207 SEC_ERROR_CERT_SIGNATURE_ALGORITHM_DISABLED = (SEC_ERROR_BASE + 176), |
| 208 | 208 |
| 209 SEC_ERROR_LEGACY_DATABASE = (SEC_ERROR_BASE + 177), |
| 210 |
| 209 /* Add new error codes above here. */ | 211 /* Add new error codes above here. */ |
| 210 SEC_ERROR_END_OF_LIST | 212 SEC_ERROR_END_OF_LIST |
| 211 } SECErrorCodes; | 213 } SECErrorCodes; |
| 212 #endif /* NO_SECURITY_ERROR_ENUM */ | 214 #endif /* NO_SECURITY_ERROR_ENUM */ |
| 213 | 215 |
| 214 #endif /* __SEC_ERR_H_ */ | 216 #endif /* __SEC_ERR_H_ */ |
| OLD | NEW |