You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Feature request allow user to specify ecnrypted TLS certificates, ie generate TLS certs that have passphrases. Currently miniweb supports only TLS certs with no passphrases. To Reproduce
Steps to reproduce the behavior:
New default behavior on miniweb document
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365
This errors out because new standard is to add passphrase to the key
Current work around openssl req -nodes -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365
if you do add a passphrase miniweb errors saying it cant decipher key.
The text was updated successfully, but these errors were encountered:
Describe your environment
Describe the bug
Feature request allow user to specify ecnrypted TLS certificates, ie generate TLS certs that have passphrases. Currently miniweb supports only TLS certs with no passphrases.
To Reproduce
Steps to reproduce the behavior:
New default behavior on miniweb document
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365
This errors out because new standard is to add passphrase to the key
Current work around openssl req -nodes -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365
if you do add a passphrase miniweb errors saying it cant decipher key.
The text was updated successfully, but these errors were encountered: