LetsEncryptShell is Python2/3 compatible shell-style client for LetsEncrypt. It's simple tool for anyone who would like to request a SSL certificate.
- letsencryptshell.py
- also on github
- user friendly (simple shell-style user interface) ... see examples
- script friendly (simple integration into automated scripts) ... see examples
- portable code (compatible with python2 and python3)
- easy auditable (currently less than 1500 rows of code)
letsnecryptshell
By default it creates: home directory: {home}/.letsencryptshell directory for certificates: {home}/.letsencryptshell/certs 3072bit master secret-key: {home}/.letsencryptshell/sk.pem 3072bit master public-key: {home}/.letsencryptshell/pk.pem
LetsEncryptShell> register https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf {email@address}
LetsEncryptShell> domainchallenge {domain}
... Now It's time to create page http://{domain}/.well-known/acme-challenge/{token_from_challenge}
LetsEncryptShell> domainconfirm {domain}
LetsEncryptShell> certificateget {domain}
It creates: 2048bit RSA or 256bit ECDSA key: {home}/.letsencryptshell/certs/{domain}.key signed x509 certificate: {home}/.letsencryptshell/certs/{domain}.crt intermediate certificate: {home}/.letsencryptshell/certs/{domain}.im
- letsencryptshell currently depends on openssl binary
- home directory {home}/.letsencryptshell should be on encrypted filesystem
- letsencryptshell currently supports only http-01 ACME challege (tls-sni-01 will be added soon)
- letsencryptshell currently supports RSA(2048bit) and ECDSA(256bit) keys