Skip to content

Commit 8dd8a1e

Browse files
authored
Make use of Cert Flags if Set (#936)
1 parent 9c9dc29 commit 8dd8a1e

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/KubernetesClient/CertUtils.cs

+9-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,15 @@ public static X509Certificate2 GeneratePfx(KubernetesClientConfiguration config)
9696
// see https://github.com/kubernetes-client/csharp/issues/737
9797
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
9898
{
99-
cert = new X509Certificate2(cert.Export(X509ContentType.Pkcs12));
99+
if (config.ClientCertificateKeyStoreFlags.HasValue)
100+
{
101+
cert = new X509Certificate2(cert.Export(X509ContentType.Pkcs12), "", config.ClientCertificateKeyStoreFlags.Value);
102+
}
103+
else
104+
{
105+
cert = new X509Certificate2(cert.Export(X509ContentType.Pkcs12));
106+
}
107+
100108
}
101109

102110
return cert;

0 commit comments

Comments
 (0)