From c4a75b288086dc092368820fde0ac0a74e5f480a Mon Sep 17 00:00:00 2001 From: er0k Date: Tue, 11 Oct 2016 09:24:27 -0400 Subject: [PATCH] Increase the recommended RSA key length from 1024 to 2048 bits --- examples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/README.md b/examples/README.md index bc785ee6..d8898b46 100644 --- a/examples/README.md +++ b/examples/README.md @@ -3,7 +3,7 @@ ## Installation 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. `cd` into the public directory 0. Start a PHP server `php -S localhost:4444`