6 instantiations of DSAOpenSsl
System.Security.Cryptography (6)
System\Security\Cryptography\DSA.Create.OpenSsl.cs (1)
8
private static DSAWrapper CreateCore() => new DSAWrapper(new
DSAOpenSsl
());
System\Security\Cryptography\X509Certificates\OpenSslExportProvider.cs (1)
38
Interop.Crypto.EvpAlgorithmId.DSA => new
DSAOpenSsl
(privateKey),
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (2)
568
return new
DSAOpenSsl
(_privateKey);
634
using (typedKey = new
DSAOpenSsl
(dsaParameters))
System\Security\Cryptography\X509Certificates\OpenSslX509Encoder.cs (1)
181
DSAOpenSsl dsa = new
DSAOpenSsl
();
System\Security\Cryptography\X509Certificates\X509CertificateLoader.OpenSsl.cs (1)
68
Oids.Dsa => new
DSAOpenSsl
(),
7 references to DSAOpenSsl
System.Security.Cryptography (6)
System\Security\Cryptography\DSAOpenSsl.cs (1)
116
throw new PlatformNotSupportedException(SR.Format(SR.PlatformNotSupported_CryptographyOpenSSLNotFound, nameof(
DSAOpenSsl
)));
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (2)
624
DSAOpenSsl
? typedKey = privateKey as
DSAOpenSsl
;
System\Security\Cryptography\X509Certificates\OpenSslX509Encoder.cs (2)
170
private static
DSAOpenSsl
BuildDsaPublicKey(byte[] encodedKeyValue, byte[] encodedParameters)
181
DSAOpenSsl
dsa = new DSAOpenSsl();
System\Security\Cryptography\X509Certificates\X509CertificateLoader.OpenSsl.cs (1)
80
if (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
))]