System.Security.Cryptography.DSAImplementation.DSACng.HashData C# (CSharp) Method

HashData() protected method

protected HashData ( Stream data, Internal.Cryptography.HashAlgorithmName hashAlgorithm ) : byte[]
data Stream
hashAlgorithm Internal.Cryptography.HashAlgorithmName
return byte[]
            protected override byte[] HashData(Stream data, HashAlgorithmName hashAlgorithm)
            {
                return CngCommon.HashData(data, hashAlgorithm);
            }

Same methods

DSAImplementation.DSACng::HashData ( byte data, int offset, int count, Internal.Cryptography.HashAlgorithmName hashAlgorithm ) : byte[]