From 0db55f1b5e2dbed6bc774432be7172abe3daa1e4 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Wed, 2 Mar 2022 16:36:48 +0700 Subject: RFC 8879 preliminaries --- crypto/src/tls/ExtensionType.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'crypto/src/tls/ExtensionType.cs') diff --git a/crypto/src/tls/ExtensionType.cs b/crypto/src/tls/ExtensionType.cs index 87f6a7574..a1f1fa7e8 100644 --- a/crypto/src/tls/ExtensionType.cs +++ b/crypto/src/tls/ExtensionType.cs @@ -106,6 +106,11 @@ namespace Org.BouncyCastle.Tls */ public const int cached_info = 25; + /* + * RFC 8879 + */ + public const int compress_certificate = 27; + /* * RFC 8449 */ @@ -191,6 +196,8 @@ namespace Org.BouncyCastle.Tls return "token_binding"; case cached_info: return "cached_info"; + case compress_certificate: + return "compress_certificate"; case record_size_limit: return "record_size_limit"; case session_ticket: @@ -257,6 +264,7 @@ namespace Org.BouncyCastle.Tls case extended_master_secret: case token_binding: case cached_info: + case compress_certificate: case record_size_limit: case session_ticket: case pre_shared_key: -- cgit 1.4.1