Originally created by @it-can on GitHub (Mar 2, 2016).
Letsencrypt now supports ECDSA how can I use this with your script?
https://twitter.com/letsencrypt/status/697504441075798016
./letsencrypt.sh -h | grep algo
--algo (-a) rsa|prime256v1|secp384r1 Which public key algorithm should be used? Supported: rsa, prime256v1 and secp384r1
Or set KEY_ALGO in config.sh:
# Which public key algorithm should be used? Supported: rsa, prime256v1 and secp384r1
#KEY_ALGO=rsa
@germeier commented on GitHub (Mar 2, 2016):
Use the command line parameter "--algo":
```
./letsencrypt.sh -h | grep algo
--algo (-a) rsa|prime256v1|secp384r1 Which public key algorithm should be used? Supported: rsa, prime256v1 and secp384r1
```
Or set KEY_ALGO in config.sh:
```
# Which public key algorithm should be used? Supported: rsa, prime256v1 and secp384r1
#KEY_ALGO=rsa
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @it-can on GitHub (Mar 2, 2016).
Letsencrypt now supports ECDSA how can I use this with your script?
https://twitter.com/letsencrypt/status/697504441075798016
@germeier commented on GitHub (Mar 2, 2016):
Use the command line parameter "--algo":
Or set KEY_ALGO in config.sh:
@it-can commented on GitHub (Mar 2, 2016):
thanks!