2018-02-14 14:01:23 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
open Client_keys
|
|
|
|
|
|
|
|
let group =
|
2018-04-03 13:39:09 +04:00
|
|
|
{ Clic.name = "keys" ;
|
2018-02-14 14:01:23 +04:00
|
|
|
title = "Commands for managing the wallet of cryptographic keys" }
|
|
|
|
|
2018-05-26 15:38:07 +04:00
|
|
|
let encrypted_switch () =
|
|
|
|
if List.exists
|
2018-05-26 15:41:16 +04:00
|
|
|
(fun (scheme, _) ->
|
|
|
|
scheme = Tezos_signer_backends.Unencrypted.scheme)
|
2018-05-26 15:38:07 +04:00
|
|
|
(Client_keys.registered_signers ()) then
|
|
|
|
Clic.switch
|
|
|
|
~long:"encrypted"
|
|
|
|
~doc:("Encrypt the key on-disk") ()
|
|
|
|
else
|
|
|
|
Clic.constant true
|
|
|
|
|
2018-04-05 19:35:35 +04:00
|
|
|
let sig_algo_arg =
|
|
|
|
Clic.default_arg
|
|
|
|
~doc:"use custom signature algorithm"
|
|
|
|
~long:"sig"
|
|
|
|
~short:'s'
|
2018-06-05 21:27:58 +04:00
|
|
|
~placeholder:"ed25519|secp256k1|p256"
|
2018-04-05 19:35:35 +04:00
|
|
|
~default: "ed25519"
|
|
|
|
(Signature.algo_param ())
|
|
|
|
|
2018-05-26 15:22:47 +04:00
|
|
|
let gen_keys_containing
|
2018-05-26 15:38:07 +04:00
|
|
|
?(encrypted = false) ?(prefix=false) ?(force=false)
|
2018-05-26 15:22:47 +04:00
|
|
|
~containing ~name (cctxt : #Client_context.io_wallet) =
|
|
|
|
let unrepresentable =
|
|
|
|
List.filter (fun s -> not @@ Base58.Alphabet.all_in_alphabet Base58.Alphabet.bitcoin s) containing in
|
|
|
|
match unrepresentable with
|
|
|
|
| _ :: _ ->
|
|
|
|
cctxt#warning
|
|
|
|
"The following can't be written in the key alphabet (%a): %a"
|
|
|
|
Base58.Alphabet.pp Base58.Alphabet.bitcoin
|
|
|
|
(Format.pp_print_list
|
|
|
|
~pp_sep:(fun ppf () -> Format.fprintf ppf ", ")
|
|
|
|
(fun ppf s -> Format.fprintf ppf "'%s'" s))
|
|
|
|
unrepresentable >>= return
|
|
|
|
| [] ->
|
|
|
|
Public_key_hash.mem cctxt name >>=? fun name_exists ->
|
|
|
|
if name_exists && not force
|
|
|
|
then
|
|
|
|
cctxt#warning
|
2018-06-20 18:03:31 +04:00
|
|
|
"Key for name '%s' already exists. Use --force to update." name >>= return
|
2018-05-26 15:22:47 +04:00
|
|
|
else
|
|
|
|
begin
|
|
|
|
cctxt#warning "This process uses a brute force search and \
|
|
|
|
may take a long time to find a key." >>= fun () ->
|
|
|
|
let matches =
|
|
|
|
if prefix then
|
|
|
|
let containing_tz1 = List.map ((^) "tz1") containing in
|
|
|
|
(fun key -> List.exists
|
|
|
|
(fun containing ->
|
|
|
|
String.sub key 0 (String.length containing) = containing)
|
|
|
|
containing_tz1)
|
|
|
|
else
|
|
|
|
let re = Re.Str.regexp (String.concat "\\|" containing) in
|
|
|
|
(fun key -> try ignore (Re.Str.search_forward re key 0); true
|
|
|
|
with Not_found -> false) in
|
|
|
|
let rec loop attempts =
|
|
|
|
let public_key_hash, public_key, secret_key =
|
|
|
|
Signature.generate_key () in
|
|
|
|
let hash = Signature.Public_key_hash.to_b58check @@
|
|
|
|
Signature.Public_key.hash public_key in
|
|
|
|
if matches hash
|
|
|
|
then
|
|
|
|
let pk_uri = Tezos_signer_backends.Unencrypted.make_pk public_key in
|
2018-05-26 15:38:07 +04:00
|
|
|
begin
|
|
|
|
if encrypted then
|
|
|
|
Tezos_signer_backends.Encrypted.encrypt cctxt secret_key
|
|
|
|
else
|
|
|
|
return (Tezos_signer_backends.Unencrypted.make_sk secret_key)
|
|
|
|
end >>=? fun sk_uri ->
|
2018-05-26 15:22:47 +04:00
|
|
|
register_key cctxt ~force
|
|
|
|
(public_key_hash, pk_uri, sk_uri) name >>=? fun () ->
|
|
|
|
return hash
|
|
|
|
else begin if attempts mod 25_000 = 0
|
|
|
|
then cctxt#message "Tried %d keys without finding a match" attempts
|
|
|
|
else Lwt.return () end >>= fun () ->
|
|
|
|
loop (attempts + 1) in
|
|
|
|
loop 1 >>=? fun key_hash ->
|
|
|
|
cctxt#message
|
|
|
|
"Generated '%s' under the name '%s'." key_hash name >>= fun () ->
|
|
|
|
return ()
|
|
|
|
end
|
|
|
|
|
|
|
|
let commands () : Client_context.io_wallet Clic.command list =
|
2018-04-03 13:39:09 +04:00
|
|
|
let open Clic in
|
2018-02-14 14:01:23 +04:00
|
|
|
let show_private_switch =
|
|
|
|
switch
|
|
|
|
~long:"show-secret"
|
|
|
|
~short:'S'
|
|
|
|
~doc:"show the private key" () in
|
|
|
|
[
|
|
|
|
command ~group
|
|
|
|
~desc: "List supported signing schemes.\n\
|
|
|
|
Signing schemes are identifiers for signer modules: the \
|
|
|
|
built-in signing routines, a hardware wallet, an \
|
|
|
|
external agent, etc.\n\
|
|
|
|
Each signer has its own format for describing secret \
|
|
|
|
keys, such a raw secret key for the default \
|
|
|
|
`unencrypted` scheme, the path on a hardware security \
|
|
|
|
module, an alias for an external agent, etc.\n\
|
|
|
|
This command gives the list of signer modules that this \
|
|
|
|
version of the tezos client supports."
|
|
|
|
no_options
|
|
|
|
(fixed [ "list" ; "signing" ; "schemes" ])
|
2018-05-26 12:52:34 +04:00
|
|
|
(fun () (cctxt : Client_context.io_wallet) ->
|
2018-02-14 14:01:23 +04:00
|
|
|
let signers =
|
|
|
|
List.sort
|
|
|
|
(fun (ka, _) (kb, _) -> String.compare ka kb)
|
|
|
|
(registered_signers ()) in
|
|
|
|
Lwt_list.iter_s
|
|
|
|
(fun (n, (module S : SIGNER)) ->
|
|
|
|
cctxt#message "@[<v 2>Scheme `%s`: %s@,@[<hov 0>%a@]@]"
|
|
|
|
n S.title Format.pp_print_text S.description)
|
|
|
|
signers >>= return) ;
|
|
|
|
|
2018-05-26 15:38:07 +04:00
|
|
|
command ~group ~desc: "Generate a pair of keys."
|
|
|
|
(args3 (Secret_key.force_switch ()) sig_algo_arg (encrypted_switch ()))
|
2018-02-14 14:01:23 +04:00
|
|
|
(prefixes [ "gen" ; "keys" ]
|
|
|
|
@@ Secret_key.fresh_alias_param
|
|
|
|
@@ stop)
|
2018-05-26 15:38:07 +04:00
|
|
|
(fun (force, algo, encrypted) name (cctxt : Client_context.io_wallet) ->
|
2018-02-14 14:01:23 +04:00
|
|
|
Secret_key.of_fresh cctxt force name >>=? fun name ->
|
2018-05-26 15:22:47 +04:00
|
|
|
let (pkh, pk, sk) = Signature.generate_key ~algo () in
|
|
|
|
let pk_uri = Tezos_signer_backends.Unencrypted.make_pk pk in
|
2018-05-26 15:38:07 +04:00
|
|
|
begin
|
|
|
|
if encrypted then
|
|
|
|
Tezos_signer_backends.Encrypted.encrypt cctxt sk
|
|
|
|
else
|
|
|
|
return (Tezos_signer_backends.Unencrypted.make_sk sk)
|
|
|
|
end >>=? fun sk_uri ->
|
2018-05-26 15:22:47 +04:00
|
|
|
register_key cctxt ~force (pkh, pk_uri, sk_uri) name) ;
|
2018-02-14 14:01:23 +04:00
|
|
|
|
2018-05-26 15:38:07 +04:00
|
|
|
command ~group ~desc: "Generate keys including the given string."
|
|
|
|
(args3
|
2018-02-14 14:01:23 +04:00
|
|
|
(switch
|
|
|
|
~long:"prefix"
|
|
|
|
~short:'P'
|
|
|
|
~doc:"the key must begin with tz1[word]"
|
|
|
|
())
|
2018-05-26 15:38:07 +04:00
|
|
|
(force_switch ())
|
|
|
|
(encrypted_switch ()))
|
2018-02-14 14:01:23 +04:00
|
|
|
(prefixes [ "gen" ; "vanity" ; "keys" ]
|
|
|
|
@@ Public_key_hash.fresh_alias_param
|
|
|
|
@@ prefix "matching"
|
|
|
|
@@ (seq_of_param @@ string ~name:"words" ~desc:"string key must contain one of these words"))
|
2018-05-26 15:38:07 +04:00
|
|
|
(fun (prefix, force, encrypted) name containing (cctxt : Client_context.io_wallet) ->
|
2018-02-14 14:01:23 +04:00
|
|
|
Public_key_hash.of_fresh cctxt force name >>=? fun name ->
|
2018-05-26 15:38:07 +04:00
|
|
|
gen_keys_containing ~encrypted ~force ~prefix ~containing ~name cctxt) ;
|
2018-02-14 14:01:23 +04:00
|
|
|
|
|
|
|
command ~group ~desc: "Add a secret key to the wallet."
|
|
|
|
(args1 (Secret_key.force_switch ()))
|
|
|
|
(prefix "import"
|
|
|
|
@@ prefixes [ "secret" ; "key" ]
|
|
|
|
@@ Secret_key.fresh_alias_param
|
2018-06-14 20:49:50 +04:00
|
|
|
@@ Client_keys.sk_uri_param
|
2018-05-26 15:22:47 +04:00
|
|
|
@@ stop)
|
|
|
|
(fun force name sk_uri (cctxt : Client_context.io_wallet) ->
|
2018-02-14 14:01:23 +04:00
|
|
|
Secret_key.of_fresh cctxt force name >>=? fun name ->
|
2018-05-26 15:22:47 +04:00
|
|
|
Client_keys.neuterize sk_uri >>=? fun pk_uri ->
|
|
|
|
begin
|
|
|
|
Public_key.find_opt cctxt name >>=? function
|
|
|
|
| None -> return ()
|
2018-06-16 22:51:19 +04:00
|
|
|
| Some (pk_uri_found, _) ->
|
|
|
|
fail_unless (pk_uri = pk_uri_found || force)
|
2018-05-26 15:22:47 +04:00
|
|
|
(failure
|
|
|
|
"public and secret keys '%s' don't correspond, \
|
2018-06-20 18:03:31 +04:00
|
|
|
please don't use --force" name)
|
2018-05-26 15:22:47 +04:00
|
|
|
end >>=? fun () ->
|
2018-06-16 22:51:19 +04:00
|
|
|
Client_keys.public_key_hash pk_uri >>=? fun (pkh, public_key) ->
|
2018-06-16 20:24:04 +04:00
|
|
|
cctxt#message
|
|
|
|
"Tezos address added: %a"
|
|
|
|
Signature.Public_key_hash.pp pkh >>= fun () ->
|
2018-06-16 22:51:19 +04:00
|
|
|
register_key cctxt ~force (pkh, pk_uri, sk_uri) ?public_key name) ;
|
2018-02-14 14:01:23 +04:00
|
|
|
|
|
|
|
command ~group ~desc: "Add a public key to the wallet."
|
|
|
|
(args1 (Public_key.force_switch ()))
|
|
|
|
(prefix "import"
|
|
|
|
@@ prefixes [ "public" ; "key" ]
|
|
|
|
@@ Public_key.fresh_alias_param
|
2018-06-14 20:49:50 +04:00
|
|
|
@@ Client_keys.pk_uri_param
|
2018-05-26 15:22:47 +04:00
|
|
|
@@ stop)
|
|
|
|
(fun force name pk_uri (cctxt : Client_context.io_wallet) ->
|
2018-02-14 14:01:23 +04:00
|
|
|
Public_key.of_fresh cctxt force name >>=? fun name ->
|
2018-06-16 22:51:19 +04:00
|
|
|
Client_keys.public_key_hash pk_uri >>=? fun (pkh, public_key) ->
|
2018-02-14 14:01:23 +04:00
|
|
|
Public_key_hash.add ~force cctxt name pkh >>=? fun () ->
|
2018-06-16 20:24:04 +04:00
|
|
|
cctxt#message
|
|
|
|
"Tezos address added: %a"
|
|
|
|
Signature.Public_key_hash.pp pkh >>= fun () ->
|
2018-06-16 22:51:19 +04:00
|
|
|
Public_key.add ~force cctxt name (pk_uri, public_key)) ;
|
2018-02-14 14:01:23 +04:00
|
|
|
|
2018-06-10 12:45:11 +04:00
|
|
|
command ~group ~desc: "Add an address to the wallet."
|
2018-02-14 14:01:23 +04:00
|
|
|
(args1 (Public_key.force_switch ()))
|
2018-06-10 12:45:11 +04:00
|
|
|
(prefixes [ "add" ; "address" ]
|
2018-02-14 14:01:23 +04:00
|
|
|
@@ Public_key_hash.fresh_alias_param
|
|
|
|
@@ Public_key_hash.source_param
|
|
|
|
@@ stop)
|
|
|
|
(fun force name hash cctxt ->
|
|
|
|
Public_key_hash.of_fresh cctxt force name >>=? fun name ->
|
|
|
|
Public_key_hash.add ~force cctxt name hash) ;
|
|
|
|
|
2018-06-10 12:45:11 +04:00
|
|
|
command ~group ~desc: "List all addresses and associated keys."
|
2018-02-14 14:01:23 +04:00
|
|
|
no_options
|
2018-06-10 12:45:11 +04:00
|
|
|
(fixed [ "list" ; "known" ; "addresses" ])
|
2018-05-26 12:52:34 +04:00
|
|
|
(fun () (cctxt : #Client_context.io_wallet) ->
|
2018-02-14 14:01:23 +04:00
|
|
|
list_keys cctxt >>=? fun l ->
|
|
|
|
iter_s begin fun (name, pkh, pk, sk) ->
|
|
|
|
Public_key_hash.to_source pkh >>=? fun v ->
|
|
|
|
begin match pk, sk with
|
|
|
|
| None, None ->
|
|
|
|
cctxt#message "%s: %s" name v
|
2018-05-26 15:22:47 +04:00
|
|
|
| _, Some uri ->
|
|
|
|
let scheme =
|
|
|
|
Option.unopt ~default:"unencrypted" @@
|
|
|
|
Uri.scheme (uri : sk_uri :> Uri.t) in
|
2018-02-14 14:01:23 +04:00
|
|
|
cctxt#message "%s: %s (%s sk known)" name v scheme
|
2018-05-26 15:22:47 +04:00
|
|
|
| Some _, _ ->
|
|
|
|
cctxt#message "%s: %s (pk known)" name v
|
2018-02-14 14:01:23 +04:00
|
|
|
end >>= fun () -> return ()
|
|
|
|
end l) ;
|
|
|
|
|
2018-06-10 12:45:11 +04:00
|
|
|
command ~group ~desc: "Show the keys associated with an implicit account."
|
2018-02-14 14:01:23 +04:00
|
|
|
(args1 show_private_switch)
|
2018-06-10 12:45:11 +04:00
|
|
|
(prefixes [ "show" ; "address"]
|
2018-02-14 14:01:23 +04:00
|
|
|
@@ Public_key_hash.alias_param
|
|
|
|
@@ stop)
|
2018-05-26 12:52:34 +04:00
|
|
|
(fun show_private (name, _) (cctxt : #Client_context.io_wallet) ->
|
2018-02-14 14:01:23 +04:00
|
|
|
alias_keys cctxt name >>=? fun key_info ->
|
|
|
|
match key_info with
|
2018-05-26 15:22:47 +04:00
|
|
|
| None ->
|
2018-06-10 12:45:11 +04:00
|
|
|
cctxt#message "No keys found for address" >>= fun () ->
|
2018-05-26 15:22:47 +04:00
|
|
|
return ()
|
2018-02-14 14:01:23 +04:00
|
|
|
| Some (pkh, pk, skloc) ->
|
2018-05-26 15:22:47 +04:00
|
|
|
cctxt#message "Hash: %a"
|
|
|
|
Signature.Public_key_hash.pp pkh >>= fun () ->
|
2018-02-14 14:01:23 +04:00
|
|
|
match pk with
|
|
|
|
| None -> return ()
|
2018-05-26 15:22:47 +04:00
|
|
|
| Some pk ->
|
|
|
|
cctxt#message "Public Key: %a"
|
|
|
|
Signature.Public_key.pp pk >>= fun () ->
|
2018-02-14 14:01:23 +04:00
|
|
|
if show_private then
|
|
|
|
match skloc with
|
|
|
|
| None -> return ()
|
|
|
|
| Some skloc ->
|
|
|
|
Secret_key.to_source skloc >>=? fun skloc ->
|
2018-05-26 15:22:47 +04:00
|
|
|
cctxt#message "Secret Key: %s" skloc >>= fun () ->
|
|
|
|
return ()
|
|
|
|
else
|
|
|
|
return ()) ;
|
2018-02-14 14:01:23 +04:00
|
|
|
|
|
|
|
command ~group ~desc: "Forget the entire wallet of keys."
|
2018-04-03 13:39:09 +04:00
|
|
|
(args1 (Clic.switch
|
2018-02-14 18:54:52 +04:00
|
|
|
~long:"force" ~short:'f'
|
|
|
|
~doc:"you got to use the force for that" ()))
|
2018-02-14 14:01:23 +04:00
|
|
|
(fixed [ "forget" ; "all" ; "keys" ])
|
2018-05-26 15:22:47 +04:00
|
|
|
(fun force (cctxt : Client_context.io_wallet) ->
|
2018-02-14 14:01:23 +04:00
|
|
|
fail_unless force
|
2018-06-20 18:03:31 +04:00
|
|
|
(failure "this can only used with option --force") >>=? fun () ->
|
2018-02-14 14:01:23 +04:00
|
|
|
Public_key.set cctxt [] >>=? fun () ->
|
|
|
|
Secret_key.set cctxt [] >>=? fun () ->
|
|
|
|
Public_key_hash.set cctxt []) ;
|
|
|
|
|
|
|
|
]
|