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

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

Issue 14772023: Implement TLS 1.2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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 /* 1 /*
2 * Enumeration of all SSL-specific error codes. 2 * Enumeration of all SSL-specific error codes.
3 * 3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public 4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /* $Id$ */ 7 /* $Id$ */
8 #ifndef __SSL_ERR_H_ 8 #ifndef __SSL_ERR_H_
9 #define __SSL_ERR_H_ 9 #define __SSL_ERR_H_
10 10
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 SSL_ERROR_RX_UNEXPECTED_HELLO_VERIFY_REQUEST = (SSL_ERROR_BASE + 123), 187 SSL_ERROR_RX_UNEXPECTED_HELLO_VERIFY_REQUEST = (SSL_ERROR_BASE + 123),
188 188
189 SSL_ERROR_FEATURE_NOT_SUPPORTED_FOR_VERSION = (SSL_ERROR_BASE + 124), 189 SSL_ERROR_FEATURE_NOT_SUPPORTED_FOR_VERSION = (SSL_ERROR_BASE + 124),
190 190
191 SSL_ERROR_RX_UNEXPECTED_CERT_STATUS = (SSL_ERROR_BASE + 125), 191 SSL_ERROR_RX_UNEXPECTED_CERT_STATUS = (SSL_ERROR_BASE + 125),
192 192
193 SSL_ERROR_BAD_CHANNEL_ID_DATA = (SSL_ERROR_BASE + 126), 193 SSL_ERROR_BAD_CHANNEL_ID_DATA = (SSL_ERROR_BASE + 126),
194 SSL_ERROR_INVALID_CHANNEL_ID_KEY = (SSL_ERROR_BASE + 127), 194 SSL_ERROR_INVALID_CHANNEL_ID_KEY = (SSL_ERROR_BASE + 127),
195 SSL_ERROR_GET_CHANNEL_ID_FAILED = (SSL_ERROR_BASE + 128), 195 SSL_ERROR_GET_CHANNEL_ID_FAILED = (SSL_ERROR_BASE + 128),
196 196
197 SSL_ERROR_UNSUPPORTED_HASH_FUNCTION = (SSL_ERROR_BASE + 129),
198 SSL_ERROR_DIGEST_FAILURE = (SSL_ERROR_BASE + 130),
199 SSL_ERROR_INCORRECT_SIGNATURE_ALGORITHM = (SSL_ERROR_BASE + 131),
200
197 SSL_ERROR_END_OF_LIST /* let the c compiler determine the value of this. */ 201 SSL_ERROR_END_OF_LIST /* let the c compiler determine the value of this. */
198 } SSLErrorCodes; 202 } SSLErrorCodes;
199 #endif /* NO_SECURITY_ERROR_ENUM */ 203 #endif /* NO_SECURITY_ERROR_ENUM */
200 204
201 #endif /* __SSL_ERR_H_ */ 205 #endif /* __SSL_ERR_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698