certutil/helpers.go: Allow 3072 RSA key sizes. (#8343)

This commit is contained in:
Jon Davies
2020-06-05 20:54:41 +01:00
committed by GitHub
parent a0aa93d15e
commit dcf2308b5c

View File

@@ -464,6 +464,7 @@ func ValidateKeyTypeLength(keyType string, keyBits int) error {
case "rsa":
switch keyBits {
case 2048:
case 3072:
case 4096:
case 8192:
default: