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