I want to address an api via C# that requires mtls authentication.
The difficulty here is that the private key of the certificate is stored on a smartcard. This means that I only have the public X509 certificate in .net and I can create RSA Sh256 signatures on the smartcard with which the mtls connection need to established.
Is there any possibility in .NET to override the function for the TLS client signature in the http request lib?
Thank You!