1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/security/rustls-client-cert
2022-01-29 16:51:49 +00:00
..
certs Restructure folders (#411) 2021-02-26 00:57:58 +00:00
src Rustls client cert (#510) 2022-01-29 16:51:49 +00:00
Cargo.toml Rustls client cert (#510) 2022-01-29 16:51:49 +00:00
README.md fix broken links (#441) 2021-10-06 22:28:53 +01:00

Access Client Certificate (via Rustls)

Usage

Certificate

All the self-signed certificate are in the ./certs directory, including the CA certificate generated by mkcert that was used to create the server and client certs.

Server

cd security/rustls-client-cert
cargo run

The server runs HTTP on port 8080 and HTTPS on port 8443.

Providing Client Cert

Using HTTPie:

http https://127.0.0.1:8443/ --verify=certs/rootCA.pem --cert=certs/client-cert.pem --cert-key=certs/client-key.pem

Using cURL:

curl https://127.0.0.1:8443/ --cacert certs/rootCA.pem --cert certs/client-cert.pem --key certs/client-key.pem