项目作者: meehow

项目描述 :
Vanity public key generator for use with IPFS and IPNS
高级语言: Go
项目地址: git://github.com/meehow/peer-id-generator.git
创建时间: 2019-02-12T15:02:02Z
项目社区:https://github.com/meehow/peer-id-generator

开源协议:

下载


IPFS / IPNS peer ID generator

This tool generates IPFS public and private keypair until it finds public key
which contains required substring. Keys are stored in local directory. If you
like one of them, you can move it to ~/.ipfs/keystore/ to use it with IPFS.

Installation

  1. go install github.com/meehow/peer-id-generator@latest

Usage

➜ ~ peer-id-generator dupa

12D3KooWDpLVwxMacesha42mdupa3H8jU7bbJdAmsMD7iPjzrkfK

12D3KooWLhGVro7KsDUPa4FX3LpWC61xACoj7AEZg5wmz6VqDGJ9

12D3KooWMJmDUPAtjcaHo8LARo5VHQ5uSxrt8Mdi5fytiRnnfD2f

^C

➜ ~ cp 12D3KooWMJmDUPAtjcaHo8LARo5VHQ5uSxrt8Mdi5fytiRnnfD2f ~/.ipfs/keystore/dupa

➜ ~ ipfs name publish —key=dupa {ipfs-path}

Published to 12D3KooWMJmDUPAtjcaHo8LARo5VHQ5uSxrt8Mdi5fytiRnnfD2f: {ipfs-path}

Examples

In examples you can find key pairs which contain word “funny”
at the end of Peer ID. They are just for demonstration purposes.
Please consider these private keys as already leaked.

Benchmarks

This tool is using Ed25519
algorithm because it is able to generate keys 2500 times faster
than RSA and both can work with IPFS.

  1. goos: linux
  2. goarch: amd64
  3. pkg: github.com/meehow/peer-id-generator
  4. BenchmarkRSA-4 10 162383811 ns/op
  5. BenchmarkEd25519-4 20000 64165 ns/op
  6. PASS
  7. ok github.com/meehow/peer-id-generator 4.384s