From fa605bfff02d7c2b7b31cca01ea2f5faf003fc3d Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Mon, 18 Mar 2024 12:49:06 -0400 Subject: [PATCH] test-ca: add README, point to test_ca.rs tool --- test-ca/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test-ca/README.md diff --git a/test-ca/README.md b/test-ca/README.md new file mode 100644 index 00000000..e16fc210 --- /dev/null +++ b/test-ca/README.md @@ -0,0 +1,11 @@ +# Rustls Test CA + +This directory contains various test certificate authorities, intermediates, +end-entity, and client certificates that are used by Rustls integration tests. + +You can regenerate the data in this directory by running the +`rustls/examples/internal/test_ca.rs` tool: + +```bash +cargo run -p rustls --example test_ca +```