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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 | 196 |
197 SEC_ERROR_BAD_INFO_ACCESS_METHOD = (SEC_ERROR_BASE + 170), | 197 SEC_ERROR_BAD_INFO_ACCESS_METHOD = (SEC_ERROR_BASE + 170), |
198 SEC_ERROR_CRL_IMPORT_FAILED = (SEC_ERROR_BASE + 171), | 198 SEC_ERROR_CRL_IMPORT_FAILED = (SEC_ERROR_BASE + 171), |
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 SEC_ERROR_LEGACY_DATABASE = (SEC_ERROR_BASE + 176), |
206 | 207 |
207 SEC_ERROR_CERT_SIGNATURE_ALGORITHM_DISABLED = (SEC_ERROR_BASE + 176), | 208 SEC_ERROR_CERT_SIGNATURE_ALGORITHM_DISABLED = (SEC_ERROR_BASE + 176), |
208 | 209 |
209 /* Add new error codes above here. */ | 210 /* Add new error codes above here. */ |
210 SEC_ERROR_END_OF_LIST | 211 SEC_ERROR_END_OF_LIST |
211 } SECErrorCodes; | 212 } SECErrorCodes; |
212 #endif /* NO_SECURITY_ERROR_ENUM */ | 213 #endif /* NO_SECURITY_ERROR_ENUM */ |
213 | 214 |
214 #endif /* __SEC_ERR_H_ */ | 215 #endif /* __SEC_ERR_H_ */ |
OLD | NEW |