Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

R4R: Improve crypto/keys and add keys mnemonic and keys new commands #2090

Merged
merged 29 commits into from
Oct 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
b1064a5
crypto/keys/hd: use btcec to remove dep on tendermint
ebuchman Aug 20, 2018
cc61fa7
crypto/keys/bcrypt: improve comment about fork
ebuchman Aug 20, 2018
115ec48
crypto/keys/bip39 -> crypto/keys/bip39/fundraiser
ebuchman Aug 20, 2018
d9390bf
crypto/keys/bip39: bring in fork of tyler-smith
ebuchman Aug 20, 2018
860a1ce
crypto/keys/hd: update dep
ebuchman Aug 20, 2018
bd4876b
crypto/keys: update deps
ebuchman Aug 20, 2018
930b934
crypto/keys: move mintkey.go into new crypto/keys/mintkey
ebuchman Aug 20, 2018
edc414b
crypto/keys/hd: NewParamsFromPath
ebuchman Aug 20, 2018
e79e35e
crypto/keys: keybase.Derive takes a bip39 passphrase too
ebuchman Aug 20, 2018
d743d10
crypto/keys/hd: BIP44Params.DerivationPath
ebuchman Aug 20, 2018
fcd3c86
gaiacli keys: add commands new and mnemonic
ebuchman Aug 20, 2018
9d6f065
fix lints
ebuchman Aug 20, 2018
32bc332
minor fixes from review
ebuchman Aug 20, 2018
f761d96
update Gopkg.toml
ebuchman Aug 20, 2018
5fa2da1
crypto/keys/bcrypt: remove
ebuchman Aug 20, 2018
27a5815
crypto/keys/bip39: remove completely
ebuchman Aug 20, 2018
5b2221d
Gopkg.toml: dont use master
ebuchman Aug 20, 2018
f900022
Merge branch 'develop' into bucky/keys
cwgoes Aug 22, 2018
24e8ec1
Pull in changes from my PR
mslipper Aug 30, 2018
fd8a1ee
Merge pull request #2196 from mslipper/bucky/keys
jackzampolin Aug 30, 2018
b22f835
Merge branch 'develop' into bucky/keys
ebuchman Sep 22, 2018
a41c32d
fixes from review
ebuchman Sep 22, 2018
a5bb443
enforce min len for --unsafe-entropy
ebuchman Sep 22, 2018
f3ec6bc
Merge remote-tracking branch 'origin/develop' into bucky/keys
rigelrozanski Sep 25, 2018
57abdc8
lint fix
rigelrozanski Sep 25, 2018
82f4def
Merge branch 'develop' into bucky/keys
ebuchman Oct 17, 2018
ac6bceb
feedback from review
ebuchman Oct 17, 2018
71513e5
fix dep
ebuchman Oct 17, 2018
96c0739
Merge branch 'develop' into bucky/keys
cwgoes Oct 17, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 22 additions & 16 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 34 additions & 5 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,22 +59,51 @@
name = "github.com/tendermint/tendermint"
version = "=0.25.0"

## deps without releases:

[[constraint]]
name = "golang.org/x/crypto"
source = "https://github.com/tendermint/crypto"
revision = "3764759f34a542a3aef74d6b02e35be7ab893bba"

[[constraint]]
name = "github.com/bartekn/go-bip39"
revision = "a05967ea095d81c8fe4833776774cfaff8e5036c"
name = "github.com/cosmos/go-bip39"
revision = "52158e4697b87de16ed390e1bdaf813e581008fa"

[[constraint]]
name = "github.com/zondax/ledger-goclient"
version = "=v0.1.0"

## transitive deps, with releases:

[[override]]
name = "github.com/davecgh/go-spew"
version = "=v1.1.0"

[[constraint]]
name = "github.com/rakyll/statik"
version = "=v0.1.4"

[[constraint]]
name = "github.com/mitchellh/go-homedir"
version = "1.0.0"

## transitive deps, without releases:
#

[[override]]
name = "github.com/syndtr/goleveldb"
revision = "c4c61651e9e37fa117f53c5a906d3b63090d8445"

[[override]]
name = "golang.org/x/sys"
revision = "4e1fef5609515ec7a2cee7b5de30ba6d9b438cbf"

[[override]]
name = "google.golang.org/genproto"
revision = "383e8b2c3b9e36c4076b235b32537292176bae20"

[prune]
go-tests = true
unused-packages = true

[[constraint]]
name = "github.com/mitchellh/go-homedir"
version = "1.0.0"
14 changes: 5 additions & 9 deletions client/input.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"

"github.com/bgentry/speakeasy"
isatty "github.com/mattn/go-isatty"
"github.com/mattn/go-isatty"
"github.com/pkg/errors"
)

Expand Down Expand Up @@ -44,13 +44,8 @@ func GetPassword(prompt string, buf *bufio.Reader) (pass string, err error) {

// GetSeed will request a seed phrase from stdin and trims off
// leading/trailing spaces
func GetSeed(prompt string, buf *bufio.Reader) (seed string, err error) {
if inputIsTty() {
fmt.Println(prompt)
}
seed, err = readLineFromBuf(buf)
seed = strings.TrimSpace(seed)
return
func GetSeed(prompt string, buf *bufio.Reader) (string, error) {
return GetString(prompt, buf)
}

// GetCheckPassword will prompt for a password twice to verify they
Expand Down Expand Up @@ -133,5 +128,6 @@ func readLineFromBuf(buf *bufio.Reader) (string, error) {

// PrintPrefixed prints a string with > prefixed for use in prompts.
func PrintPrefixed(msg string) {
fmt.Printf("> %s\n", msg)
msg = fmt.Sprintf("> %s\n", msg)
fmt.Fprint(os.Stderr, msg)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe it's better to avoid modifying msg and just do

fmt.Fprint(os.Stderr, fmt.Sprintf("> %s\n", msg))

}
78 changes: 78 additions & 0 deletions client/keys/mnemonic.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
package keys

import (
"crypto/sha256"
"fmt"

"github.com/cosmos/cosmos-sdk/client"
"github.com/spf13/cobra"

bip39 "github.com/bartekn/go-bip39"
)

const (
flagUserEntropy = "unsafe-entropy"

mnemonicEntropySize = 256
)
ebuchman marked this conversation as resolved.
Show resolved Hide resolved

func mnemonicKeyCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "mnemonic",
Short: "Compute the bip39 mnemonic for some input entropy",
Long: "Create a bip39 mnemonic, sometimes called a seed phrase, by reading from the system entropy. To pass your own entropy, use --unsafe-entropy",
RunE: runMnemonicCmd,
}
cmd.Flags().Bool(flagUserEntropy, false, "Prompt the user to supply their own entropy, instead of relying on the system")
return cmd
}

func runMnemonicCmd(cmd *cobra.Command, args []string) error {
flags := cmd.Flags()

userEntropy, _ := flags.GetBool(flagUserEntropy)

var entropySeed []byte

if userEntropy {
// prompt the user to enter some entropy
buf := client.BufferStdin()
inputEntropy, err := client.GetString("> WARNING: Generate at least 256-bits of entropy and enter the results here:", buf)
if err != nil {
return err
}
if len(inputEntropy) < 43 {
return fmt.Errorf("256-bits is 43 characters in Base-64, and 100 in Base-6. You entered %v, and probably want more", len(inputEntropy))
}
conf, err := client.GetConfirmation(
fmt.Sprintf("> Input length: %d", len(inputEntropy)),
buf)
if err != nil {
return err
}
if !conf {
return nil
}

// hash input entropy to get entropy seed
hashedEntropy := sha256.Sum256([]byte(inputEntropy))
entropySeed = hashedEntropy[:]
printStep()
} else {
// read entropy seed straight from crypto.Rand
var err error
entropySeed, err = bip39.NewEntropy(mnemonicEntropySize)
if err != nil {
return err
}
}

mnemonic, err := bip39.NewMnemonic(entropySeed[:])
if err != nil {
return err
}

fmt.Println(mnemonic)

return nil
}
Loading