summary refs log tree commit diff
path: root/Crypto/src/crypto/tls/CompressionMethod.cs
blob: 4a127a63eb21c5aa23ef35153d288c3add31e845 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Org.BouncyCastle.Crypto.Tls
{
	/// <summary>
	/// RFC 2246 6.1
	/// </summary>
    public enum CompressionMethod : byte
	{
		NULL = 0,

		/*
		 * RFC 3749 2
		 */
		DEFLATE = 1

		/*
		 * Values from 224 decimal (0xE0) through 255 decimal (0xFF)
		 * inclusive are reserved for private use.
		 */
	}
}