3 types derived from SHA256
mscorlib (1)
system\security\cryptography\sha256managed.cs (1)
21public class SHA256Managed : SHA256
System.Core (2)
System\Security\Cryptography\SHA256Cng.cs (1)
15public sealed class SHA256Cng : SHA256 {
System\Security\Cryptography\SHA256CryptoServiceProvider.cs (1)
15public sealed class SHA256CryptoServiceProvider : SHA256 {
23 references to SHA256
mscorlib (11)
system\security\cryptography\sha256.cs (3)
31new static public SHA256 Create() { 35new static public SHA256 Create(String hashName) { 36return (SHA256) CryptoConfig.CreateFromName(hashName);
system\security\cryptography\sha256managed.cs (2)
23private SHA256 _impl; 50_impl = SHA256.Create();
system\security\policy\hash.cs (6)
154return new Hash(typeof(SHA256), sha256); 255if (!m_hashes.TryGetValue(typeof(SHA256), out sha256)) 257sha256 = GenerateHash(GetDefaultHashImplementationOrFallback(typeof(SHA256), typeof(SHA256))); 367GetHashIndexType(typeof(SHA256)), 424else if (hashAlgorithm.IsAssignableFrom(typeof(SHA256)))
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlSecurityUtility.cs (1)
52using (SHA256 sha256 = SHA256Cng.Create()) {
System.Data.Entity (2)
System\Data\Common\Utils\MetadataHelper.cs (2)
856internal static SHA256 CreateSHA256HashAlgorithm() 858SHA256 sha256HashAlgorith;
System.Web (4)
Security\Cryptography\CryptoAlgorithms.cs (1)
80internal static SHA256 CreateSHA256() {
Security\Cryptography\CryptoUtil.cs (2)
90using (SHA256 sha256 = CryptoAlgorithms.CreateSHA256()) { 114using (SHA256 sha256 = CryptoAlgorithms.CreateSHA256()) {
UI\EventValidationStore.cs (1)
114using (SHA256 hashAlgorithm = CryptoAlgorithms.CreateSHA256()) {
System.Web.DataVisualization (1)
WebForm\General\ChartHttpHandler.cs (1)
1471using (SHA256 sha = new SHA256CryptoServiceProvider())
System.Web.Services (1)
System\Web\Services\Protocols\LogicalMethodInfo.cs (1)
546hash = SHA256.Create();
System.Windows.Forms (1)
parent\parent\parent\public\Internal\NDP\Inc\mansign2.cs (1)
930hasher = SHA256.Create();
System.Workflow.Runtime (2)
Tracking.cs (1)
1890SHA256 sha256Provider = new SHA256CryptoServiceProvider();
WorkflowDefinitionDispenser.cs (1)
162SHA256 sha256Provider = new SHA256CryptoServiceProvider();