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)
39Interop.Crypto.EvpAlgorithmFamilyId.DSA => new DSAOpenSsl(privateKey),
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (2)
568return new DSAOpenSsl(_privateKey); 664using (typedKey = new DSAOpenSsl(dsaParameters))
System\Security\Cryptography\X509Certificates\OpenSslX509Encoder.cs (1)
186DSAOpenSsl dsa = new DSAOpenSsl();
System\Security\Cryptography\X509Certificates\X509CertificateLoader.OpenSsl.cs (1)
72return new AsymmetricAlgorithmPkcs12PrivateKey(pkcs8, static () => 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)
654DSAOpenSsl? typedKey = privateKey as DSAOpenSsl;
System\Security\Cryptography\X509Certificates\OpenSslX509Encoder.cs (2)
171private static DSAOpenSsl BuildDsaPublicKey(byte[] encodedKeyValue, byte[]? encodedParameters) 186DSAOpenSsl dsa = new DSAOpenSsl();
System\Security\Cryptography\X509Certificates\X509CertificateLoader.OpenSsl.cs (1)
89if (key.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))]