diff options
Diffstat (limited to 'crypto/src/tls/CompressionMethod.cs')
-rw-r--r-- | crypto/src/tls/CompressionMethod.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/crypto/src/tls/CompressionMethod.cs b/crypto/src/tls/CompressionMethod.cs new file mode 100644 index 000000000..21b43d477 --- /dev/null +++ b/crypto/src/tls/CompressionMethod.cs @@ -0,0 +1,20 @@ +using System; + +namespace Org.BouncyCastle.Tls +{ + /// <summary>RFC 2246 6.1</summary> + public abstract class CompressionMethod + { + public const short cls_null = 0; + + /* + * RFC 3749 2 + */ + public const short DEFLATE = 1; + + /* + * Values from 224 decimal (0xE0) through 255 decimal (0xFF) + * inclusive are reserved for private use. + */ + } +} |