1 type derived from DSA
mscorlib (1)
system\security\cryptography\dsacryptoserviceprovider.cs (1)
37
public sealed class DSACryptoServiceProvider :
DSA
, ICspAsymmetricAlgorithm {
34 references to DSA
mscorlib (15)
system\security\cryptography\dsa.cs (9)
55
new static public
DSA
Create() {
59
new static public
DSA
Create(String algName) {
60
return (
DSA
) CryptoConfig.CreateFromName(algName);
63
static public
DSA
Create(int keySizeInBits) {
64
DSA
dsa = (
DSA
)CryptoConfig.CreateFromName("DSA-FIPS186-3");
74
static public
DSA
Create(DSAParameters parameters) {
75
DSA
dsa = (
DSA
)CryptoConfig.CreateFromName("DSA-FIPS186-3");
system\security\cryptography\dsasignaturedeformatter.cs (3)
20
DSA
_dsaKey; // DSA Key value to do decrypt operation
36
_dsaKey = (
DSA
) key;
47
_dsaKey = (
DSA
) key;
system\security\cryptography\dsasignatureformatter.cs (3)
20
DSA
_dsaKey;
36
_dsaKey = (
DSA
) key;
47
_dsaKey = (
DSA
) key;
System.IdentityModel (11)
System\IdentityModel\Tokens\X509AsymmetricSecurityKey.cs (9)
197
if ((this.PrivateKey as
DSA
) != null)
199
return (this.PrivateKey as
DSA
);
224
if ((this.PublicKey as
DSA
) != null)
226
return (this.PublicKey as
DSA
);
322
DSA
dsa = (this.PublicKey as
DSA
);
389
DSA
dsa = (this.PrivateKey as
DSA
);
499
return (this.PublicKey is
DSA
);
System\IdentityModel\X509Util.cs (2)
245
DSA
dsa;
248
dsa = certificate.PublicKey.Key as
DSA
;
System.Security (5)
system\security\cryptography\xml\keyinfo.cs (4)
216
private
DSA
m_key;
223
m_key =
DSA
.Create();
226
public DSAKeyValue (
DSA
key) {
234
public
DSA
Key {
system\security\cryptography\xml\signedxml.cs (1)
366
if (key is
DSA
) {
System.ServiceModel (1)
System\ServiceModel\Security\SecurityUtils.cs (1)
1922
using (
DSA
dsa = CngLightup.GetDSAPrivateKey(certificate))
WindowsBase (2)
Base\MS\Internal\IO\Packaging\XmlDigitalSignatureProcessor.cs (2)
1160
if (key is
DSA
)
1161
keyInfo.AddClause(new DSAKeyValue((
DSA
)key)); // DSA