Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Side by Side Diff: net/third_party/nss/ssl/SSLerrs.h

Issue 18346010: net: support ALPN. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update patch file. Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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")
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698