We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c9dc29 commit 8dd8a1eCopy full SHA for 8dd8a1e
src/KubernetesClient/CertUtils.cs
@@ -96,7 +96,15 @@ public static X509Certificate2 GeneratePfx(KubernetesClientConfiguration config)
96
// see https://github.com/kubernetes-client/csharp/issues/737
97
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
98
{
99
- cert = new X509Certificate2(cert.Export(X509ContentType.Pkcs12));
+ 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
+
108
}
109
110
return cert;
0 commit comments