Org.BouncyCastle.Crypto.Tls.TlsNullCipher.DecodeCiphertext C# (CSharp) Метод

DecodeCiphertext() публичный Метод

public DecodeCiphertext ( Org.BouncyCastle.Crypto.Tls.ContentType type, byte ciphertext, int offset, int len ) : byte[]
type Org.BouncyCastle.Crypto.Tls.ContentType
ciphertext byte
offset int
len int
Результат byte[]
        public virtual byte[] DecodeCiphertext(ContentType type, byte[] ciphertext, int offset, int len)
		{
			return CopyData(ciphertext, offset, len);
		}