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

Side by Side Diff: third_party/tlslite/tlslite/constants.py

Issue 263213005: Move channel id tests up from OpenSSL and update channelid version. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Accept all error codes in SSLClientSocketChannelIDTest.FailingChannelID Created 6 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
« no previous file with comments | « third_party/tlslite/patches/channel_id.patch ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Authors: 1 # Authors:
2 # Trevor Perrin 2 # Trevor Perrin
3 # Google - defining ClientCertificateType 3 # Google - defining ClientCertificateType
4 # Google (adapted by Sam Rushing) - NPN support 4 # Google (adapted by Sam Rushing) - NPN support
5 # Dimitris Moraitis - Anon ciphersuites 5 # Dimitris Moraitis - Anon ciphersuites
6 # Dave Baggett (Arcode Corporation) - canonicalCipherName 6 # Dave Baggett (Arcode Corporation) - canonicalCipherName
7 # 7 #
8 # See the LICENSE file for legal information regarding use of this file. 8 # See the LICENSE file for legal information regarding use of this file.
9 9
10 """Constants used in various places.""" 10 """Constants used in various places."""
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 ocsp = 1 45 ocsp = 1
46 46
47 class ExtensionType: # RFC 6066 / 4366 47 class ExtensionType: # RFC 6066 / 4366
48 server_name = 0 # RFC 6066 / 4366 48 server_name = 0 # RFC 6066 / 4366
49 status_request = 5 # RFC 6066 / 4366 49 status_request = 5 # RFC 6066 / 4366
50 srp = 12 # RFC 5054 50 srp = 12 # RFC 5054
51 cert_type = 9 # RFC 6091 51 cert_type = 9 # RFC 6091
52 signed_cert_timestamps = 18 # RFC 6962 52 signed_cert_timestamps = 18 # RFC 6962
53 tack = 0xF300 53 tack = 0xF300
54 supports_npn = 13172 54 supports_npn = 13172
55 channel_id = 30031 55 channel_id = 30032
56 56
57 class NameType: 57 class NameType:
58 host_name = 0 58 host_name = 0
59 59
60 class AlertLevel: 60 class AlertLevel:
61 warning = 1 61 warning = 1
62 fatal = 2 62 fatal = 2
63 63
64 class AlertDescription: 64 class AlertDescription:
65 """ 65 """
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 badUsername: "bad username",\ 352 badUsername: "bad username",\
353 badPassword: "bad password",\ 353 badPassword: "bad password",\
354 badA: "bad A",\ 354 badA: "bad A",\
355 badPremasterPadding: "bad premaster padding",\ 355 badPremasterPadding: "bad premaster padding",\
356 shortPremasterSecret: "short premaster secret",\ 356 shortPremasterSecret: "short premaster secret",\
357 badVerifyMessage: "bad verify message",\ 357 badVerifyMessage: "bad verify message",\
358 badFinished: "bad finished message",\ 358 badFinished: "bad finished message",\
359 badMAC: "bad MAC",\ 359 badMAC: "bad MAC",\
360 badPadding: "bad padding" 360 badPadding: "bad padding"
361 } 361 }
OLDNEW
« no previous file with comments | « third_party/tlslite/patches/channel_id.patch ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698