Skip to content

Commit

Permalink
Update RSAKeySize ValidateSet
Browse files Browse the repository at this point in the history
Update RSAKeySize ValidateSet to include 4096
Fixes PKISharp#125
  • Loading branch information
Klaus Frank authored Dec 2, 2021
1 parent 82ffcb2 commit 594623c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/ACME-PS/ACME-PS.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -1295,7 +1295,7 @@ function New-AcmePSKey {
$RSAHashSize = 256,

[Parameter(ParameterSetName="RSA")]
[ValidateSet(2048)]
[ValidateSet(2048, 4096)]
[int]
$RSAKeySize = 2048,

Expand Down

0 comments on commit 594623c

Please sign in to comment.