21 references to Pkcs12
aspire (3)
Certificates\CertificateGeneration\CertificateManager.cs (1)
677bytes = certificate.Export(X509ContentType.Pkcs12, password);
Certificates\CertificateGeneration\UnixCertificateManager.cs (1)
173var export = certificate.Export(X509ContentType.Pkcs12, "");
Certificates\CertificateGeneration\WindowsCertificateManager.cs (1)
59var export = certificate.Export(X509ContentType.Pkcs12, "");
dotnet-dev-certs (3)
src\aspnetcore\src\Shared\CertificateGeneration\CertificateManager.cs (1)
680bytes = certificate.Export(X509ContentType.Pkcs12, password);
src\aspnetcore\src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
173var export = certificate.Export(X509ContentType.Pkcs12, "");
src\aspnetcore\src\Shared\CertificateGeneration\WindowsCertificateManager.cs (1)
63var export = certificate.Export(X509ContentType.Pkcs12, "");
Microsoft.AspNetCore.DeveloperCertificates.XPlat (3)
src\aspnetcore\src\Shared\CertificateGeneration\CertificateManager.cs (1)
680bytes = certificate.Export(X509ContentType.Pkcs12, password);
src\aspnetcore\src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
173var export = certificate.Export(X509ContentType.Pkcs12, "");
src\aspnetcore\src\Shared\CertificateGeneration\WindowsCertificateManager.cs (1)
63var export = certificate.Export(X509ContentType.Pkcs12, "");
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Certificates\CertificateConfigLoader.cs (1)
89var certificateBytes = fullCertificate.Export(X509ContentType.Pkcs12, "");
src\aspnetcore\src\Shared\CertificateGeneration\CertificateManager.cs (1)
680bytes = certificate.Export(X509ContentType.Pkcs12, password);
src\aspnetcore\src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
173var export = certificate.Export(X509ContentType.Pkcs12, "");
src\aspnetcore\src\Shared\CertificateGeneration\WindowsCertificateManager.cs (1)
63var export = certificate.Export(X509ContentType.Pkcs12, "");
RepoTasks (3)
src\aspnetcore\src\Shared\CertificateGeneration\CertificateManager.cs (1)
680bytes = certificate.Export(X509ContentType.Pkcs12, password);
src\aspnetcore\src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
173var export = certificate.Export(X509ContentType.Pkcs12, "");
src\aspnetcore\src\Shared\CertificateGeneration\WindowsCertificateManager.cs (1)
63var export = certificate.Export(X509ContentType.Pkcs12, "");
System.Net.Quic (2)
System\Net\Quic\Internal\MsQuicConfiguration.cs (2)
264certificateData = collection.Export(X509ContentType.Pkcs12)!; 268certificateData = certificate.Export(X509ContentType.Pkcs12);
System.Security.Cryptography (3)
System\Security\Cryptography\X509Certificates\StorePal.Windows.Export.cs (1)
77case X509ContentType.Pkcs12:
System\Security\Cryptography\X509Certificates\X509Certificate.cs (1)
766if (!(contentType == X509ContentType.Cert || contentType == X509ContentType.SerializedCert || contentType == X509ContentType.Pkcs12))
System\Security\Cryptography\X509Certificates\X509Pal.Windows.GetCertContentType.cs (1)
94return X509ContentType.Pkcs12;