diff options
Diffstat (limited to 'crypto/src/tls/ChannelBinding.cs')
-rw-r--r-- | crypto/src/tls/ChannelBinding.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/crypto/src/tls/ChannelBinding.cs b/crypto/src/tls/ChannelBinding.cs new file mode 100644 index 000000000..84f8bc4df --- /dev/null +++ b/crypto/src/tls/ChannelBinding.cs @@ -0,0 +1,19 @@ +using System; + +namespace Org.BouncyCastle.Tls +{ + /// <summary>RFC 5056</summary> + /// <remarks> + /// Note that the values here are implementation-specific and arbitrary. It is recommended not to depend on the + /// particular values (e.g.serialization). + /// </remarks> + public abstract class ChannelBinding + { + /* + * RFC 5929 + */ + public const int tls_server_end_point = 0; + public const int tls_unique = 1; + public const int tls_unique_for_telnet = 2; + } +} |