summary refs log tree commit diff
path: root/Crypto/src/crypto/tls/TlsCompression.cs
blob: 177d64b7eae691e894659844e5aebc4bae063729 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.IO;

namespace Org.BouncyCastle.Crypto.Tls
{
	public interface TlsCompression
	{
		Stream Compress(Stream output);

		Stream Decompress(Stream output);
	}
}