Open SF2311 opened 2 months ago
The TLS code does have support for this, but there is no API to turn it on. The variable is marked like this:
self._request_client_certificate = False # For test purposes only
but I don't know why it is only for testing purposes. If Jeremy sees this, perhaps he knows! I will try to take a look at this later when I get some time, as it seems like something we'd want to be able to enable. Beyond basic cert checking, which seems to be there, I'm not sure what other extra configuration is expect for this kind of feature (e.g. some sort of cert checking callback).
Hi,
I've been working on an implementation of a simple protocol on top of QUIC. I'd like to use client certificates for mutual authentication but I couldn't find any mentions of this in the documentation. There seems to be a test case however, that indicates there is at least some support for client certificates.
Is there a way to make the server request and check the certificate of the client during connection setup? If not, are there plans to implement support for this in the future?
Thanks and kind regards.