Hello,
I would like to ask whether WinRM4J supports certificate-based authentication. I tried using the following
WinRmTool.Builder builder = WinRmTool.Builder.builder(winrmUrl, "", "")
.disableCertificateChecks(true)
.sslContext(sslContext)
.authenticationScheme("Certificate");
However, it seems that "Certificate" is not a valid authentication scheme. The available options appear to be: [basic, NTLM, negotiate, kerberos].
Could you confirm whether certificate-based authentication is supported? If not, are there any plans to implement it in the future?
Thank you.