1
0
mirror of https://github.com/go-acme/lego.git synced 2025-11-28 08:47:41 +02:00

feat: add RSA 3072 (#1856)

This commit is contained in:
Paul Dee
2023-03-01 16:27:20 +01:00
committed by GitHub
parent 1b98b20058
commit 27a2c014f7
4 changed files with 7 additions and 2 deletions

View File

@@ -65,6 +65,8 @@ func getKeyType(ctx *cli.Context) certcrypto.KeyType {
switch strings.ToUpper(keyType) {
case "RSA2048":
return certcrypto.RSA2048
case "RSA3072":
return certcrypto.RSA3072
case "RSA4096":
return certcrypto.RSA4096
case "RSA8192":