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