System.Security.Cryptography.HMACSHA384.HMACSHA384 C# (CSharp) Method

HMACSHA384() public method

public HMACSHA384 ( byte key ) : System
key byte
return System
        public HMACSHA384(byte[] key)
        {
            this.HashName = HashAlgorithmNames.SHA384;
            _hMacCommon = new HMACCommon(HashAlgorithmNames.SHA384, key, BlockSize);
            base.Key = _hMacCommon.ActualKey;
            // change the default value of BlockSizeValue to 128 instead of 64
            BlockSizeValue = BlockSize;
        }

Same methods

HMACSHA384::HMACSHA384 ( ) : System