diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-08-01 17:27:58 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-08-01 17:27:58 +0700 |
commit | 6fd2fc61dd607475c367d3ee828c659a1651eb4e (patch) | |
tree | 6349d86f8723158e1cb43c73e0cb810f1ea3201a /crypto/src/tls/ChannelBinding.cs | |
parent | Make nextUpdate nullable (diff) | |
download | BouncyCastle.NET-ed25519-6fd2fc61dd607475c367d3ee828c659a1651eb4e.tar.xz |
TLS: 'tls-exporter' channel binding
- defined in RFC 9266 - see https://github.com/bcgit/bc-java/issues/1198
Diffstat (limited to 'crypto/src/tls/ChannelBinding.cs')
-rw-r--r-- | crypto/src/tls/ChannelBinding.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/src/tls/ChannelBinding.cs b/crypto/src/tls/ChannelBinding.cs index 84f8bc4df..d6e0cbe27 100644 --- a/crypto/src/tls/ChannelBinding.cs +++ b/crypto/src/tls/ChannelBinding.cs @@ -15,5 +15,10 @@ namespace Org.BouncyCastle.Tls public const int tls_server_end_point = 0; public const int tls_unique = 1; public const int tls_unique_for_telnet = 2; + + /* + * RFC 9266 + */ + public const int tls_exporter = 3; } } |