41 references to Hash
mscorlib (14)
system\security\cryptography\asymmetricsignaturedeformatter.cs (1)
38return VerifySignature(hash.Hash, rgbSignature);
system\security\cryptography\asymmetricsignatureformatter.cs (1)
37return CreateSignature(hash.Hash);
system\security\cryptography\passwordderivebytes.cs (4)
250_baseValue = _hash.Hash; 255_baseValue = _hash.Hash; 276Buffer.InternalBlockCopy(_hash.Hash, 0, rgb, ib, cbHash); 287Buffer.InternalBlockCopy(_hash.Hash, 0, rgb, ib, cbHash);
system\security\cryptography\pkcs1maskgenerationmethod.cs (2)
53byte[] _hash = hash.Hash; 60ib += hash.Hash.Length;
system\security\cryptography\sha1managed.cs (1)
85return _impl.Hash;
system\security\cryptography\sha256managed.cs (1)
87return _impl.Hash;
system\security\cryptography\sha384managed.cs (1)
86return _impl.Hash;
system\security\cryptography\sha512managed.cs (1)
78return _impl.Hash;
system\security\cryptography\utils.cs (2)
822Buffer.InternalBlockCopy(hash.Hash, 0, DB, 0, cbHash); 908byte[] hashValue = hash.Hash;
System.Data (9)
fx\src\data\System\Data\SqlClient\SqlAeadAes256CbcHmac256Algorithm.cs (2)
230byte[] hash = hmac.Hash; 398computedHash = hmac.Hash;
fx\src\data\System\Data\SqlClient\SqlColumnEncryptionCertificateStoreProvider.cs (3)
155hash = sha256.Hash; 227hash = sha256.Hash; 322hash = sha256.Hash;
fx\src\data\System\Data\SqlClient\SqlColumnEncryptionCngProvider.cs (2)
135hash = sha256.Hash; 207hash = sha256.Hash;
fx\src\data\System\Data\SqlClient\SqlColumnEncryptionCspProvider.cs (2)
141hash = sha256.Hash; 213hash = sha256.Hash;
System.IdentityModel (11)
System\IdentityModel\CryptoHelper.cs (2)
720return formatter.CreateSignature( hash.Hash ); 748return deformatter.VerifySignature( hash.Hash, signatureValue );
System\IdentityModel\Diagnostics\DigestTraceRecordHelper.cs (2)
81writer.WriteElementString(CanonicalOctetsHashLength, _hash.Hash.Length.ToString(CultureInfo.InvariantCulture)); 82writer.WriteElementString(CanonicalOctetsHash, Convert.ToBase64String(_hash.Hash));
System\IdentityModel\ExclusiveCanonicalizationTransform.cs (1)
118return hash.Hash;
System\IdentityModel\HashStream.cs (1)
92return this.hash.Hash;
System\IdentityModel\SignedXml.cs (4)
88signature = formatter.CreateSignature(hash.Hash); 101byte[] signature = hash.Hash; 181if (!CryptoHelper.FixedTimeEquals(hash.Hash, GetSignatureValue())) 198result = deformatter.VerifySignature(hash.Hash, GetSignatureValue());
System\IdentityModel\StrTransform.cs (1)
103return hash.Hash;
System.Security (5)
system\security\cryptography\dataprotector.cs (1)
104m_hashedPurpose = sha256.Hash;
system\security\cryptography\xml\canonicalxml.cs (1)
113byte[] res = (byte[]) hash.Hash.Clone();
system\security\cryptography\xml\exccanonicalxml.cs (1)
69byte[] res = (byte[]) hash.Hash.Clone();
system\security\cryptography\xml\reference.cs (2)
194if (m_hashAlgorithm.Hash == null) 196DigestValue = m_hashAlgorithm.Hash;
System.ServiceModel (2)
System\ServiceModel\Security\SspiNegotiationTokenAuthenticator.cs (1)
155negotiationHash = sspiState.NegotiationDigest.Hash;
System\ServiceModel\Security\SspiNegotiationTokenProvider.cs (1)
150negotiationHash = sspiState.NegotiationDigest.Hash;