Skip to content
This repository has been archived by the owner on Dec 5, 2018. It is now read-only.

cesumilo/eth-keys-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Ethereum (like) Keypair Generator

It is a script bash that run some commands to generate a public, private key and compute the ethereum address of the new account.

Dependencies

Install dependencies

$> ./install-deps

Clean installations of dependencies

$> ./install-deps clean

Use keys generator

$> ./keys-generator myname [ -c or --create-account ] [ --keygen ]

Output

  • ${key_name}_acc.pub - Public key for account in hex.
  • ${key_name}_acc.key - Private key for account in hex.
  • ${key_name}_addr.txt - Account address in hex.

If -c or --create-account is used:

  • ${key_name}key - Ciphered account.

If --keygen is used:

  • ${key_name}.pub - Node public key.
  • ${key_name}.key - Node private key.

References