From 5aa1473749caa291b12de262eb81fe78280cb7b0 Mon Sep 17 00:00:00 2001 From: John Kane Date: Thu, 26 May 2016 13:55:59 +0100 Subject: [PATCH] readme: update README to reflect arg rename The size command line arg has been renamed to bitsize. The readme usage has been updated to reflect this. License: MIT Signed-off-by: John Kane --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fca20e5..23a1cc2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # ipfs-key A tool for easily generating ipfs keypairs. When run, it will write the bytes of the serialized private key to stdout. By default, a 2048 bit RSA key will be -generated. The keysize can be changed by specifying the `-size` option, and the +generated. The keysize can be changed by specifying the `-bitsize` option, and the key type can be changed by specifying the `-type` option (currently only RSA is implemented). @@ -12,5 +12,5 @@ $ go get github.com/whyrusleeping/ipfs-key ## Usage ``` -$ ipfs-key -size=4096 > my.key +$ ipfs-key -bitsize=4096 > my.key ```