radicand / phpki

Fork of PHPki (Sourceforge)
GNU General Public License v2.0
19 stars 25 forks source link

Not able to generate 4096bit keys. #4

Closed kylejohnson closed 11 years ago

kylejohnson commented 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.

radicand commented 11 years ago

Thanks for this - I will merge once you submit it.