ARIACipherSuitePlugin.BulkCipherAlgorithmAria.BulkCipherAlgorithmAria C# (CSharp) Method

BulkCipherAlgorithmAria() public method

public BulkCipherAlgorithmAria ( int keySize ) : System
keySize int
return System
        public BulkCipherAlgorithmAria(int keySize)
        {
            if (keySize != 128 && keySize != 192 && keySize != 256) {
                throw new Exception("Invalid ARIA key size: " + keySize);
            }

            _keySize = keySize/8;
        }