Merge pull request #668 from er0k/increase-ssl-key-length

Increase the recommended RSA key length from 1024 to 2048 bits
This commit is contained in:
Alex Bilbie 2016-10-11 14:27:16 +01:00 committed by GitHub
commit 4c4b0633b1

View File

@ -3,7 +3,7 @@
## Installation ## Installation
0. Run `composer install` in this directory to install dependencies 0. Run `composer install` in this directory to install dependencies
0. Create a private key `openssl genrsa -out private.key 1024` 0. Create a private key `openssl genrsa -out private.key 2048`
0. Create a public key `openssl rsa -in private.key -pubout > public.key` 0. Create a public key `openssl rsa -in private.key -pubout > public.key`
0. `cd` into the public directory 0. `cd` into the public directory
0. Start a PHP server `php -S localhost:4444` 0. Start a PHP server `php -S localhost:4444`