1 write to m_hashAlgorithm
System.Core (1)
System\Security\Cryptography\SHA512Cng.cs (1)
21
m_hashAlgorithm
= new BCryptHashAlgorithm(CngAlgorithm.Sha512,
8 references to m_hashAlgorithm
System.Core (8)
System\Security\Cryptography\SHA512Cng.cs (8)
19
Contract.Ensures(
m_hashAlgorithm
!= null);
28
m_hashAlgorithm
.Dispose();
37
Contract.Assert(
m_hashAlgorithm
!= null);
38
m_hashAlgorithm
.Initialize();
42
Contract.Assert(
m_hashAlgorithm
!= null);
43
m_hashAlgorithm
.HashCore(array, ibStart, cbSize);
47
Contract.Assert(
m_hashAlgorithm
!= null);
48
return
m_hashAlgorithm
.HashFinal();