summary refs log tree commit diff
path: root/crypto/src/crypto/tls/TlsCipherFactory.cs
blob: 0756603f41b0c4ccd638495a5f8bf5129c9f145d (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 TlsCipherFactory
	{
		/// <exception cref="IOException"></exception>
		TlsCipher CreateCipher(TlsClientContext context, EncryptionAlgorithm encryptionAlgorithm,
			DigestAlgorithm digestAlgorithm);
	}
}