Chromium Code Reviews| 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 |