postgres_rustls

Rustls-based library for postgres.
git clone https://git.philomathiclife.com/repos/postgres_rustls
Log | Files | Refs | README

README.md (1080B)


      1 When `runtime` is enabled and the `ignored` tests are run,
      2 there must be a PostgreSQL server running on `[::1]:5432` that is configured
      3 with TLS 1.3 support with a valid X.509 v3 certificate issued to the value in
      4 `host`. The root certificate must be what is in `ca.crt.pem` and must be a valid
      5 PEM-encoded X.509 v3 certificate. The user that connects to the server
      6 must be the value in `user` and the database that is connected to must be the
      7 value in `dbname`.
      8 
      9 When connecting via password (e.g., `tests::test_password_and_channel_binding` is run),
     10 the password must be the value in `password`; furthermore `scram-sha-256` must be the
     11 configured method of authentication. When connecting via client TLS
     12 (e.g., `tests::test_mutual_tls` is run), the client certificate chain must be what is in
     13 `client.crt.pem` and must be valid PEM-encoded X.509 v3 certificate chain with root certificate
     14 recognized by PostgreSQL. The client private key must be what is in `client.key.pem` and
     15 must be a valid PEM-encoded private key associated with the client certificate in
     16 `client.crt.pem`.