23 references to Export
aspire (4)
Certificates\CertificateGeneration\CertificateManager.cs (1)
678bytes = certificate.Export(X509ContentType.Pkcs12, password);
Certificates\CertificateGeneration\MacOSCertificateManager.cs (1)
349var certBytes = certificate.Export(X509ContentType.Pfx, password);
Certificates\CertificateGeneration\UnixCertificateManager.cs (1)
197var export = certificate.Export(X509ContentType.Pkcs12, "");
Certificates\CertificateGeneration\WindowsCertificateManager.cs (1)
59var export = certificate.Export(X509ContentType.Pkcs12, "");
Aspire.Hosting (1)
DeveloperCertificateService.cs (1)
342var pfxBytes = needPfx ? certificate.Export(X509ContentType.Pfx, password) : null;
dotnet-dev-certs (4)
src\aspnetcore\src\Shared\CertificateGeneration\CertificateManager.cs (1)
680bytes = certificate.Export(X509ContentType.Pkcs12, password);
src\aspnetcore\src\Shared\CertificateGeneration\MacOSCertificateManager.cs (1)
337var certBytes = certificate.Export(X509ContentType.Pfx, password);
src\aspnetcore\src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
174var export = certificate.Export(X509ContentType.Pkcs12, "");
src\aspnetcore\src\Shared\CertificateGeneration\WindowsCertificateManager.cs (1)
63var export = certificate.Export(X509ContentType.Pkcs12, "");
Microsoft.AspNetCore.DeveloperCertificates.XPlat (4)
src\aspnetcore\src\Shared\CertificateGeneration\CertificateManager.cs (1)
680bytes = certificate.Export(X509ContentType.Pkcs12, password);
src\aspnetcore\src\Shared\CertificateGeneration\MacOSCertificateManager.cs (1)
337var certBytes = certificate.Export(X509ContentType.Pfx, password);
src\aspnetcore\src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
174var export = certificate.Export(X509ContentType.Pkcs12, "");
src\aspnetcore\src\Shared\CertificateGeneration\WindowsCertificateManager.cs (1)
63var export = certificate.Export(X509ContentType.Pkcs12, "");
Microsoft.AspNetCore.Server.Kestrel.Core (5)
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\MacOSCertificateManager.cs (1)
337var certBytes = certificate.Export(X509ContentType.Pfx, password);
src\aspnetcore\src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
174var export = certificate.Export(X509ContentType.Pkcs12, "");
src\aspnetcore\src\Shared\CertificateGeneration\WindowsCertificateManager.cs (1)
63var export = certificate.Export(X509ContentType.Pkcs12, "");
RepoTasks (4)
src\aspnetcore\src\Shared\CertificateGeneration\CertificateManager.cs (1)
680bytes = certificate.Export(X509ContentType.Pkcs12, password);
src\aspnetcore\src\Shared\CertificateGeneration\MacOSCertificateManager.cs (1)
337var certBytes = certificate.Export(X509ContentType.Pfx, password);
src\aspnetcore\src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
174var export = certificate.Export(X509ContentType.Pkcs12, "");
src\aspnetcore\src\Shared\CertificateGeneration\WindowsCertificateManager.cs (1)
63var export = certificate.Export(X509ContentType.Pkcs12, "");
System.Security.Cryptography (1)
System\Security\Cryptography\X509Certificates\X509Certificate.cs (1)
320return Export(contentType, (string?)null);