9 references to ComputeHash
mscorlib (3)
system\security\cryptography\dsacryptoserviceprovider.cs (2)
254byte[] hashVal = _sha1.ComputeHash(buffer, offset, count); 284return _sha1.ComputeHash(data, offset, count);
system\security\cryptography\rsacryptoserviceprovider.cs (1)
328byte[] hashVal = hash.ComputeHash(buffer, offset, count);
System.Data.Entity (1)
System\Data\Mapping\MetadataMappingHasherVisitor.HashSourceBuilder.cs (1)
165byte[] hash = _hashAlgorithm.ComputeHash(_cachedBuffer, 0, byteCount);
System.ServiceModel (1)
System\ServiceModel\Security\WSSecurityJan2004.cs (1)
264tokenHash = hasher.ComputeHash(rawData, 0, rawData.Length);
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\DuplicateMessageDetector.cs (1)
47hash = this.hashAlgorithm.ComputeHash(msgBytes.Array, msgBytes.Offset, msgBytes.Count);
System.Web (3)
Security\Cryptography\CryptoUtil.cs (1)
91return sha256.ComputeHash(buffer, offset, count);
Security\Cryptography\NetFXCryptoService.cs (2)
90byte[] signature = signingAlgorithm.ComputeHash(memStream.GetBuffer(), 0, (int)memStream.Length); 147byte[] computedSignature = validationAlgorithm.ComputeHash(protectedData, 0, ivByteCount + encryptedPayloadByteCount);