6 instantiations of CspParameters
Microsoft.AspNetCore.Testing (1)
Microsoft.Build.Tasks.Core (1)
System.Security.Cryptography (4)
System\Security\Cryptography\PasswordDeriveBytes.cs (4)
31public PasswordDeriveBytes(string strPassword, byte[]? rgbSalt) : this(strPassword, rgbSalt, new CspParameters()) { }
33public PasswordDeriveBytes(byte[] password, byte[]? salt) : this(password, salt, new CspParameters()) { }
37this(strPassword, rgbSalt, strHashName, iterations, new CspParameters()) { }
41this(password, salt, hashName, iterations, new CspParameters()) { }
25 references to CspParameters
Microsoft.Build.Tasks.Core (1)
mscorlib (1)
netstandard (1)
System.Security.Cryptography (19)
System\Security\Cryptography\PasswordDeriveBytes.cs (5)
28private readonly CspParameters? _cspParams;
47public PasswordDeriveBytes(string strPassword, byte[]? rgbSalt, CspParameters? cspParams) :
52public PasswordDeriveBytes(byte[] password, byte[]? salt, CspParameters? cspParams) :
57public PasswordDeriveBytes(string strPassword, byte[]? rgbSalt, string strHashName, int iterations, CspParameters? cspParams) :
61public PasswordDeriveBytes(byte[] password, byte[]? salt, string hashName, int iterations, CspParameters? cspParams)
System.Security.Cryptography.Csp (1)
System.Security.Cryptography.Pkcs (1)
System.Security.Permissions (1)