BraintreeEncryption.Library.BouncyCastle.Crypto.Encodings.Pkcs1Encoding.GetInputBlockSize C# (CSharp) 메소드

GetInputBlockSize() 공개 메소드

public GetInputBlockSize ( ) : int
리턴 int
        public int GetInputBlockSize()
        {
            int baseBlockSize = engine.GetInputBlockSize();

            return forEncryption
                ?	baseBlockSize - HeaderLength
                :	baseBlockSize;
        }