docker-ipfs-keygen/README.md
John Kane 5aa1473749 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 <john@kanej.me>
2016-05-26 13:55:59 +01:00

17 lines
466 B
Markdown

# 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 `-bitsize` option, and the
key type can be changed by specifying the `-type` option (currently only RSA is
implemented).
## Installation
```
$ go get github.com/whyrusleeping/ipfs-key
```
## Usage
```
$ ipfs-key -bitsize=4096 > my.key
```