You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Liamsi 368c236c75 mv go-crypto files to crypto dir 6 years ago
.circleci Merge pull request #1757 from tendermint/bucky/update-spec 6 years ago
.github add xla as codeowner 6 years ago
crypto mv go-crypto files to crypto dir 6 years ago
hkdfchacha20poly1305 Switch xchachapoly to hkdfchachapoly (#135) 6 years ago
merkle Move from tmlibs #213 (#115) 6 years ago
tmhash merkle: remove unused funcs. unexport simplemap. improv docs 6 years ago
.editorconfig merge 2 rules in .editorconfig 7 years ago
.gitignore mv go-crypto files to crypto dir 6 years ago
CHANGELOG.md Remove error from priv.PubKey() (#131) 6 years ago
Gopkg.lock Update Gopkg.lock 6 years ago
Gopkg.toml delete keys package 6 years ago
LICENSE Change license to Apache2.0 9 years ago
Makefile delete keys package 6 years ago
README.md Fix dead link in README.md (#106) 6 years ago
amino.go delete keys package 6 years ago
armor.go keys package: fundraiser compatibility and HD keys (BIP 39 & BIP 32 / BIP 44) (#118) 6 years ago
armor_test.go Clean up test cases -> testify 7 years ago
doc.go doc.go file started 7 years ago
encode_test.go delete keys package 6 years ago
example_test.go example: fix func suffix 7 years ago
hash.go Add seed-able cryptographic random. 8 years ago
priv_key.go Remove error from priv.PubKey() (#131) 6 years ago
priv_key_test.go Remove error from priv.PubKey() (#131) 6 years ago
pub_key.go update ed25519 address scheme (#112) 6 years ago
pub_key_test.go Remove error from priv.PubKey() (#131) 6 years ago
random.go safer PRNG seeding: hash concatenation of fresh seedBytes with current seedBytes 6 years ago
signature.go Merge pull request #85 from tendermint/cwgoes/ledger-integration 6 years ago
signature_test.go Remove error from priv.PubKey() (#131) 6 years ago
symmetric.go Moved crypto code to top level again 7 years ago
symmetric_test.go Clean up test cases -> testify 7 years ago
version.go version bump (#128) 6 years ago

README.md

go-crypto GoDoc

go-crypto is the cryptographic package adapted for Tendermint's uses

Importing it

import "github.com/tendermint/go-crypto"

Binary encoding

For Binary encoding, please refer to the Tendermint encoding spec.

JSON Encoding

go-crypto .Bytes() uses Amino:binary encoding, but Amino:JSON is also supported.

Example Amino:JSON encodings:

crypto.PrivKeyEd25519     - {"type":"954568A3288910","value":"EVkqJO/jIXp3rkASXfh9YnyToYXRXhBr6g9cQVxPFnQBP/5povV4HTjvsy530kybxKHwEi85iU8YL0qQhSYVoQ=="}
crypto.SignatureEd25519   - {"type":"6BF5903DA1DB28","value":"77sQNZOrf7ltExpf7AV1WaYPCHbyRLgjBsoWVzcduuLk+jIGmYk+s5R6Emm29p12HeiNAuhUJgdFGmwkpeGJCA=="}
crypto.PubKeyEd25519      - {"type":"AC26791624DE60","value":"AT/+aaL1eB0477Mud9JMm8Sh8BIvOYlPGC9KkIUmFaE="}
crypto.PrivKeySecp256k1   - {"type":"019E82E1B0F798","value":"zx4Pnh67N+g2V+5vZbQzEyRerX9c4ccNZOVzM9RvJ0Y="}
crypto.SignatureSecp256k1 - {"type":"6D1EA416E1FEE8","value":"MEUCIQCIg5TqS1l7I+MKTrSPIuUN2+4m5tA29dcauqn3NhEJ2wIgICaZ+lgRc5aOTVahU/XoLopXKn8BZcl0bnuYWLvohR8="}
crypto.PubKeySecp256k1    - {"type":"F8CCEAEB5AE980","value":"A8lPKJXcNl5VHt1FK8a244K9EJuS4WX1hFBnwisi0IJx"}