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

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

Issue 14772023: Implement TLS 1.2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Remove an incorrect assertion I added Created 7 years, 7 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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 "SSL received an unexpected Certificate Status handshake message.") 405 "SSL received an unexpected Certificate Status handshake message.")
406 406
407 ER3(SSL_ERROR_BAD_CHANNEL_ID_DATA, (SSL_ERROR_BASE + 126), 407 ER3(SSL_ERROR_BAD_CHANNEL_ID_DATA, (SSL_ERROR_BASE + 126),
408 "SSL received a malformed TLS Channel ID extension.") 408 "SSL received a malformed TLS Channel ID extension.")
409 409
410 ER3(SSL_ERROR_INVALID_CHANNEL_ID_KEY, (SSL_ERROR_BASE + 127), 410 ER3(SSL_ERROR_INVALID_CHANNEL_ID_KEY, (SSL_ERROR_BASE + 127),
411 "The application provided an invalid TLS Channel ID key.") 411 "The application provided an invalid TLS Channel ID key.")
412 412
413 ER3(SSL_ERROR_GET_CHANNEL_ID_FAILED, (SSL_ERROR_BASE + 128), 413 ER3(SSL_ERROR_GET_CHANNEL_ID_FAILED, (SSL_ERROR_BASE + 128),
414 "The application could not get a TLS Channel ID.") 414 "The application could not get a TLS Channel ID.")
415
416 ER3(SSL_ERROR_UNSUPPORTED_HASH_ALGORITHM, (SSL_ERROR_BASE + 129),
417 "Unsupported hash algorithm used by TLS peer.")
wtc 2013/05/28 17:50:25 I changed HASH_FUNCTION to HASH_ALGORITHM because
418
419 ER3(SSL_ERROR_DIGEST_FAILURE, (SSL_ERROR_BASE + 130),
420 "Digest function failed.")
421
422 ER3(SSL_ERROR_INCORRECT_SIGNATURE_ALGORITHM, (SSL_ERROR_BASE + 131),
423 "Incorrect signature algorithm specified in a digitally-signed element.")
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698