3 types derived from SHA1
mscorlib (2)
system\security\cryptography\sha1cryptoserviceprovider.cs (1)
15
public sealed class SHA1CryptoServiceProvider :
SHA1
system\security\cryptography\sha1managed.cs (1)
19
public class SHA1Managed :
SHA1
System.Core (1)
System\Security\Cryptography\SHA1Cng.cs (1)
16
public sealed class SHA1Cng :
SHA1
{
24 references to SHA1
mscorlib (14)
system\io\isolatedstorage\isolatedstorage.cs (1)
230
using (
SHA1
sha1 = new SHA1CryptoServiceProvider())
system\security\cryptography\rsaoaepkeyexchangedeformatter.cs (1)
49
return Utils.RsaOaepDecrypt(_rsaKey,
SHA1
.Create(), new PKCS1MaskGenerationMethod(), rgbData);
system\security\cryptography\rsaoaepkeyexchangeformatter.cs (1)
79
return Utils.RsaOaepEncrypt(_rsaKey,
SHA1
.Create(), new PKCS1MaskGenerationMethod(), RandomNumberGenerator.Create(), rgbData);
system\security\cryptography\sha1.cs (3)
25
new static public
SHA1
Create() {
29
new static public
SHA1
Create(String hashName) {
30
return (
SHA1
) CryptoConfig.CreateFromName(hashName);
system\security\cryptography\sha1managed.cs (1)
21
private
SHA1
_impl;
system\security\policy\hash.cs (7)
74
m_hashes[typeof(
SHA1
)] = sha1;
141
return new Hash(typeof(
SHA1
), sha1);
207
if (m_hashes.TryGetValue(typeof(
SHA1
), out sha1Hash))
236
if (!m_hashes.TryGetValue(typeof(
SHA1
), out sha1))
238
sha1 = GenerateHash(GetDefaultHashImplementationOrFallback(typeof(
SHA1
), typeof(
SHA1
)));
366
GetHashIndexType(typeof(
SHA1
)),
System (2)
net\System\Net\WebSockets\WebSocketHelpers.cs (2)
203
using (
SHA1
sha1 =
SHA1
.Create())
System.AddIn (2)
System\Addin\MiniReflection\MetadataReader\AssemblyInfo.cs (2)
72
using (System.Security.Cryptography.
SHA1
Hasher = System.Security.Cryptography.
SHA1
.Create()) {
System.Configuration (1)
System\Configuration\ClientConfigPaths.cs (1)
418
using (
SHA1
sha1 = new SHA1CryptoServiceProvider()) {
System.ServiceModel (2)
System\ServiceModel\Channels\WebSocketHelper.cs (2)
52
using (
SHA1
sha =
SHA1
.Create())
System.Web (1)
Security\Cryptography\CryptoAlgorithms.cs (1)
76
internal static
SHA1
CreateSHA1() {
System.Web.Extensions (1)
ClientServices\Providers\ClientFormsAuthenticationMembershipProvider.cs (1)
561
using(
SHA1
s = CryptoAlgorithms.CreateSHA1())
System.Windows.Forms (1)
parent\parent\parent\public\Internal\NDP\Inc\mansign2.cs (1)
934
hasher =
SHA1
.Create();