Org.BouncyCastle.Crypto.Modes.CfbBlockCipher.CfbBlockCipher C# (CSharp) 메소드

CfbBlockCipher() 공개 메소드

public CfbBlockCipher ( IBlockCipher cipher, int bitBlockSize ) : System
cipher IBlockCipher
bitBlockSize int
리턴 System
        public CfbBlockCipher(
            IBlockCipher cipher,
            int          bitBlockSize)
        {
            this.cipher = cipher;
            this.blockSize = bitBlockSize / 8;
            this.IV = new byte[cipher.GetBlockSize()];
            this.cfbV = new byte[cipher.GetBlockSize()];
            this.cfbOutV = new byte[cipher.GetBlockSize()];
        }
        /**