Index: third_party/tlslite/tlslite/constants.py |
diff --git a/third_party/tlslite/tlslite/constants.py b/third_party/tlslite/tlslite/constants.py |
index 23e3dcb79386c0a1ed19c081484e94362ca50f88..d027ef5f0937edfe31bbcc378aac2942806802d8 100644 |
--- a/third_party/tlslite/tlslite/constants.py |
+++ b/third_party/tlslite/tlslite/constants.py |
@@ -22,6 +22,7 @@ class HandshakeType: |
certificate_verify = 15 |
client_key_exchange = 16 |
finished = 20 |
+ certificate_status = 22 |
encrypted_extensions = 203 |
class ContentType: |
@@ -31,7 +32,11 @@ class ContentType: |
application_data = 23 |
all = (20,21,22,23) |
+class CertificateStatusType: |
+ ocsp = 1 |
+ |
class ExtensionType: |
+ status_request = 5 # OCSP stapling |
signed_cert_timestamps = 18 # signed_certificate_timestamp in RFC 6962 |
channel_id = 30031 |