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