6 instantiations of DSAOpenSsl
System.Security.Cryptography (6)
System\Security\Cryptography\DSA.Create.OpenSsl.cs (1)
8private static DSAWrapper CreateCore() => new DSAWrapper(new DSAOpenSsl());
System\Security\Cryptography\X509Certificates\OpenSslExportProvider.cs (1)
38Interop.Crypto.EvpAlgorithmId.DSA => new DSAOpenSsl(privateKey),
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (2)
568return new DSAOpenSsl(_privateKey); 634using (typedKey = new DSAOpenSsl(dsaParameters))
System\Security\Cryptography\X509Certificates\OpenSslX509Encoder.cs (1)
280DSAOpenSsl dsa = new DSAOpenSsl();
System\Security\Cryptography\X509Certificates\X509CertificateLoader.OpenSsl.cs (1)
68Oids.Dsa => new DSAOpenSsl(),
7 references to DSAOpenSsl
System.Security.Cryptography (6)
System\Security\Cryptography\DSAOpenSsl.cs (1)
116throw new PlatformNotSupportedException(SR.Format(SR.PlatformNotSupported_CryptographyOpenSSLNotFound, nameof(DSAOpenSsl)));
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (2)
624DSAOpenSsl? typedKey = privateKey as DSAOpenSsl;
System\Security\Cryptography\X509Certificates\OpenSslX509Encoder.cs (2)
269private static DSAOpenSsl BuildDsaPublicKey(byte[] encodedKeyValue, byte[] encodedParameters) 280DSAOpenSsl dsa = new DSAOpenSsl();
System\Security\Cryptography\X509Certificates\X509CertificateLoader.OpenSsl.cs (1)
80if (key is DSAOpenSsl dsa)
System.Security.Cryptography.OpenSsl (1)
System.Security.Cryptography.OpenSsl.cs (1)
4[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.DSAOpenSsl))]