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

Unified Diff: third_party/tlslite/tlslite/constants.py

Issue 257513008: Populate cert_key_types on OpenSSL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: USE_OPENSSL_CERTS Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/tlslite/tlslite/constants.py
diff --git a/third_party/tlslite/tlslite/constants.py b/third_party/tlslite/tlslite/constants.py
index feca4232f474fa4a50fe2505ec544c8673078a6f..ac006b7d2e07dd17b91896dc7452cc7f39350520 100644
--- a/third_party/tlslite/tlslite/constants.py
+++ b/third_party/tlslite/tlslite/constants.py
@@ -18,6 +18,9 @@ class ClientCertificateType:
dss_sign = 2
rsa_fixed_dh = 3
dss_fixed_dh = 4
+ ecdsa_sign = 64 # RFC 4492
+ rsa_fixed_ecdh = 65 # RFC 4492
+ ecdsa_fixed_ecdh = 66 # RFC 4492
wtc 2014/04/25 18:52:40 Nit: rather than referencing RFC 4492, you can jus
davidben 2014/04/25 20:52:31 Done.
class HandshakeType:
hello_request = 0

Powered by Google App Engine
This is Rietveld 408576698