129 lines
4.0 KiB
Rust
129 lines
4.0 KiB
Rust
|
extern crate rustc_serialize;
|
||
|
extern crate docopt;
|
||
|
extern crate ethstore;
|
||
|
|
||
|
use std::{env, process};
|
||
|
use std::ops::Deref;
|
||
|
use std::str::FromStr;
|
||
|
use docopt::Docopt;
|
||
|
use ethstore::ethkey::{Secret, Address, Message};
|
||
|
use ethstore::dir::{KeyDirectory, ParityDirectory, DiskDirectory, GethDirectory, DirectoryType};
|
||
|
use ethstore::{EthStore, SecretStore, import_accounts, Error};
|
||
|
|
||
|
pub const USAGE: &'static str = r#"
|
||
|
Ethereum key management.
|
||
|
Copyright 2016 Ethcore (UK) Limited
|
||
|
|
||
|
Usage:
|
||
|
ethstore insert <secret> <password> [--dir DIR]
|
||
|
ethstore change-pwd <address> <old-pwd> <new-pwd> [--dir DIR]
|
||
|
ethstore list [--dir DIR]
|
||
|
ethstore import [--src DIR] [--dir DIR]
|
||
|
ethstore remove <address> <password> [--dir DIR]
|
||
|
ethstore sign <address> <password> <message> [--dir DIR]
|
||
|
ethstore [-h | --help]
|
||
|
|
||
|
Options:
|
||
|
-h, --help Display this message and exit.
|
||
|
--dir DIR Specify the secret store directory. It may be either
|
||
|
parity, parity-test, geth, geth-test
|
||
|
or a path [default: parity].
|
||
|
--src DIR Specify import source. It may be either
|
||
|
parity, parity-test, get, geth-test
|
||
|
or a path [default: geth].
|
||
|
|
||
|
Commands:
|
||
|
insert Save account with password.
|
||
|
change-pwd Change password.
|
||
|
list List accounts.
|
||
|
import Import accounts from src.
|
||
|
remove Remove account.
|
||
|
sign Sign message.
|
||
|
"#;
|
||
|
|
||
|
#[derive(Debug, RustcDecodable)]
|
||
|
struct Args {
|
||
|
cmd_insert: bool,
|
||
|
cmd_change_pwd: bool,
|
||
|
cmd_list: bool,
|
||
|
cmd_import: bool,
|
||
|
cmd_remove: bool,
|
||
|
cmd_sign: bool,
|
||
|
arg_secret: String,
|
||
|
arg_password: String,
|
||
|
arg_old_pwd: String,
|
||
|
arg_new_pwd: String,
|
||
|
arg_address: String,
|
||
|
arg_message: String,
|
||
|
flag_src: String,
|
||
|
flag_dir: String,
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
match execute(env::args()) {
|
||
|
Ok(result) => println!("{}", result),
|
||
|
Err(err) => {
|
||
|
println!("{}", err);
|
||
|
process::exit(1);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn key_dir(location: &str) -> Result<Box<KeyDirectory>, Error> {
|
||
|
let dir: Box<KeyDirectory> = match location {
|
||
|
"parity" => Box::new(try!(ParityDirectory::create(DirectoryType::Main))),
|
||
|
"parity-test" => Box::new(try!(ParityDirectory::create(DirectoryType::Testnet))),
|
||
|
"geth" => Box::new(try!(GethDirectory::create(DirectoryType::Main))),
|
||
|
"geth-test" => Box::new(try!(GethDirectory::create(DirectoryType::Testnet))),
|
||
|
path => Box::new(try!(DiskDirectory::create(path))),
|
||
|
};
|
||
|
|
||
|
Ok(dir)
|
||
|
}
|
||
|
|
||
|
fn format_accounts(accounts: &[Address]) -> String {
|
||
|
accounts.iter()
|
||
|
.enumerate()
|
||
|
.map(|(i, a)| format!("{:2}: {}", i, a))
|
||
|
.collect::<Vec<String>>()
|
||
|
.join("\n")
|
||
|
}
|
||
|
|
||
|
fn execute<S, I>(command: I) -> Result<String, Error> where I: IntoIterator<Item=S>, S: AsRef<str> {
|
||
|
let args: Args = Docopt::new(USAGE)
|
||
|
.and_then(|d| d.argv(command).decode())
|
||
|
.unwrap_or_else(|e| e.exit());
|
||
|
|
||
|
let store = try!(EthStore::open(try!(key_dir(&args.flag_dir))));
|
||
|
|
||
|
return if args.cmd_insert {
|
||
|
let secret = try!(Secret::from_str(&args.arg_secret));
|
||
|
let address = try!(store.insert_account(secret, &args.arg_password));
|
||
|
Ok(format!("{}", address))
|
||
|
} else if args.cmd_change_pwd {
|
||
|
let address = try!(Address::from_str(&args.arg_address));
|
||
|
let ok = store.change_password(&address, &args.arg_old_pwd, &args.arg_new_pwd).is_ok();
|
||
|
Ok(format!("{}", ok))
|
||
|
} else if args.cmd_list {
|
||
|
let accounts = store.accounts();
|
||
|
Ok(format_accounts(&accounts))
|
||
|
} else if args.cmd_import {
|
||
|
let src = try!(key_dir(&args.flag_src));
|
||
|
let dst = try!(key_dir(&args.flag_dir));
|
||
|
let accounts = try!(import_accounts(src.deref(), dst.deref()));
|
||
|
Ok(format_accounts(&accounts))
|
||
|
} else if args.cmd_remove {
|
||
|
let address = try!(Address::from_str(&args.arg_address));
|
||
|
let ok = store.remove_account(&address, &args.arg_password).is_ok();
|
||
|
Ok(format!("{}", ok))
|
||
|
} else if args.cmd_sign {
|
||
|
let address = try!(Address::from_str(&args.arg_address));
|
||
|
let message = try!(Message::from_str(&args.arg_message));
|
||
|
let signature = try!(store.sign(&address, &args.arg_password, &message));
|
||
|
Ok(format!("{}", signature))
|
||
|
} else {
|
||
|
unreachable!();
|
||
|
}
|
||
|
}
|
||
|
|