Zheng Ping
Zheng Ping
Maybe https could be useful in an embedded system, hopefully someday https can be an optional feature of apple_pie.
I use the command: ``` openssl req -x509 -nodes -days 1825 -newkey rsa:4096 -keyout server.key -out server.crt ``` The generated self-signed certificates can be used in rustls. Pls check if...
@lucaswxp The private key contains `rsa` key and `pkcs8` key, and I added some codes to the `load_private_key` function, and rename it to `load_keys`: ``` fn load_keys(path: &Path) -> io::Result...
I use the [hyper-rustls](https://github.com/ctz/hyper-rustls/blob/master/examples/server.rs) as an example, and load `end.cert` as the cert file, load `end.key` as the private key, it can run in Firefox 80 without any problem, but...
I found warp's [tls.rs](https://github.com/seanmonstar/warp/blob/master/examples/tls.rs) is a good place to start. And the correct way to generate my own self-signed certificate is: ``` openssl req -x509 -nodes -days 365 -newkey rsa:2048...
@Darkspirit Thank you, this tool is such awesome.