debian-forge/test/data/certs
Michael Vogt e535877798 test: add new https_serve_directory() and test certs
This commit adds a new `https_serve_directory()` test helper
and some custom self-signed and worthless certs that are used
during testing. They are not dynamically generated to avoid the
extra compuation time during tests (but they could be).

Generated via:
```
$ openssl req -new -newkey rsa:2048  -nodes -x509  \
   -subj "/C=DE/ST=Berlin/L=Berlin/O=Org/CN=localhost"   \
   -keyout "key1.pem" -out "cert1.pem"
```

This will allow us to test `https` download URLs as well in e.g.
the curl source.
2024-07-29 16:51:48 +02:00
..
cert1.pem test: add new https_serve_directory() and test certs 2024-07-29 16:51:48 +02:00
cert2.pem test: add new https_serve_directory() and test certs 2024-07-29 16:51:48 +02:00
key1.pem test: add new https_serve_directory() and test certs 2024-07-29 16:51:48 +02:00
key2.pem test: add new https_serve_directory() and test certs 2024-07-29 16:51:48 +02:00
README.md test: add new https_serve_directory() and test certs 2024-07-29 16:51:48 +02:00

This directory contains custom self-signed and worthless certs used during testing. They are not dynamically generated to avoid the extra compuation time during tests (but they could be).

Generated via:

$ openssl req -new -newkey rsa:2048  -nodes -x509  \
   -subj "/C=DE/ST=Berlin/L=Berlin/O=Org/CN=localhost"   \
   -keyout "key1.pem" -out "cert1.pem"