Org.BouncyCastle.Crypto.Tls.TlsAeadCipher.GetPlaintextLimit C# (CSharp) Метод

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

public GetPlaintextLimit ( int ciphertextLimit ) : int
ciphertextLimit int
Результат int
        public virtual int GetPlaintextLimit(int ciphertextLimit)
        {
            // TODO We ought to be able to ask the decryptCipher (independently of it's current state!)
            return ciphertextLimit - macSize - record_iv_length;
        }