Skip to content

Commit

Permalink
add missing RSA 3072bit key size
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Ramlot <[email protected]>
  • Loading branch information
inteon committed Nov 25, 2024
1 parent 5e219b3 commit dee6aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/certificate/certificate.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const (
)

func AllSupportedKeySizes() []int {
return []int{1024, DefaultRSAlength, 4096, 8192}
return []int{1024, DefaultRSAlength, 3072, 4096, 8192}
}

//SSH Certificate structures
Expand Down

0 comments on commit dee6aa0

Please sign in to comment.