| 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 /* SSL-specific security error codes */ | 5 /* SSL-specific security error codes */ |
| 6 /* caller must include "sslerr.h" */ | 6 /* caller must include "sslerr.h" */ |
| 7 | 7 |
| 8 ER3(SSL_ERROR_EXPORT_ONLY_SERVER, SSL_ERROR_BASE + 0, | 8 ER3(SSL_ERROR_EXPORT_ONLY_SERVER, SSL_ERROR_BASE + 0, |
| 9 "Unable to communicate securely. Peer does not support high-grade encryption.") | 9 "Unable to communicate securely. Peer does not support high-grade encryption.") |
| 10 | 10 |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 "The application could not get a TLS Channel ID.") | 414 "The application could not get a TLS Channel ID.") |
| 415 | 415 |
| 416 ER3(SSL_ERROR_UNSUPPORTED_HASH_ALGORITHM, (SSL_ERROR_BASE + 129), | 416 ER3(SSL_ERROR_UNSUPPORTED_HASH_ALGORITHM, (SSL_ERROR_BASE + 129), |
| 417 "Unsupported hash algorithm used by TLS peer.") | 417 "Unsupported hash algorithm used by TLS peer.") |
| 418 | 418 |
| 419 ER3(SSL_ERROR_DIGEST_FAILURE, (SSL_ERROR_BASE + 130), | 419 ER3(SSL_ERROR_DIGEST_FAILURE, (SSL_ERROR_BASE + 130), |
| 420 "Digest function failed.") | 420 "Digest function failed.") |
| 421 | 421 |
| 422 ER3(SSL_ERROR_INCORRECT_SIGNATURE_ALGORITHM, (SSL_ERROR_BASE + 131), | 422 ER3(SSL_ERROR_INCORRECT_SIGNATURE_ALGORITHM, (SSL_ERROR_BASE + 131), |
| 423 "Incorrect signature algorithm specified in a digitally-signed element.") | 423 "Incorrect signature algorithm specified in a digitally-signed element.") |
| 424 |
| 425 ER3(SSL_ERROR_BOTH_NPN_AND_ALPN, (SSL_ERROR_BASE + 132), |
| 426 "Server attempted to negotiate both ALPN and NPN extensions") |
| OLD | NEW |