Closed kylejohnson closed 11 years ago
In request_cert.php,
for ( $i = 512 ; $i < 4096 ; $i+= 512 ) {
should be
for ( $i = 512 ; $i <= 4096 ; $i+= 512 ) {
I will submit a pull request shortly which fixes this.
Thanks for this - I will merge once you submit it.
In request_cert.php,
should be
I will submit a pull request shortly which fixes this.