tls-gen
tls-gen copied to clipboard
Generates self-signed x509/TLS/SSL certificates useful for development
Fixes #27 Very WIP as I'm getting the hang of `keytool` References: https://github.com/basho/riak-java-client/blob/develop/Makefile#L43-L59 https://docs.oracle.com/cd/E19509-01/820-3503/6nf1il6er/index.html https://github.com/rabbitmq/rabbitmq-server/discussions/2440
[Discussions like this one](https://github.com/rabbitmq/rabbitmq-server/discussions/2440) make me wonder if, together with PKCS#12 versions of both certificates, we should produce a pre-populated trust store to be quickly hooked into JVM-based tools such...
Steps to reproduce: ``` cd basic make USE_ECC=true # in terminal 1 openssl s_server -cert ./server/cert.pem -key ./server/key.pem -CAfile ./testca/cacert.pem # in terminal 2 openssl s_client -cert ./client/cert.pem -key ./client/key.pem...