rincewind
rincewind

Reputation: 1183

Libcurl - client SSL authentication with native windows crypto - is it possible?

I'm using libcurl on Windows, I need to implement client-side SSL authentication. The catch is, client certificate, used for authentication, is marked as non-exportable. It means, that I cannot export it and feed to, say, OpenSSL - I need to make libcurl use native Windows crypto (WinSSL / SecureChannel / whatever it's called).

Is it possible? If yes, what do I pass as CURLOPT_SSLCERT & CURLOPT_SSLKEY - somehow, I understand, I need to reference the keys - how?

Upvotes: 2

Views: 443

Answers (1)

rincewind
rincewind

Reputation: 1183

In case anyone is interested - not currently possible: http://curl.haxx.se/mail/lib-2013-07/0010.html .

Upvotes: 1

Related Questions