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.
 
 
 
 
 
 
Ismail Khoffi 41369d7529
circleci 2.0 (#134)
6 years ago
.circleci circleci 2.0 (#134) 6 years ago
.github add CODEOWNERS file 6 years ago
keys Remove error from priv.PubKey() (#131) 6 years ago
merkle Move from tmlibs #213 (#115) 6 years ago
tmhash merkle: remove unused funcs. unexport simplemap. improv docs 6 years ago
xchacha20poly1305 Remove panic and check the round trip 6 years ago
.gitignore Got basic key test working 7 years ago
CHANGELOG.md Remove error from priv.PubKey() (#131) 6 years ago
Gopkg.lock Remove error from priv.PubKey() (#131) 6 years ago
Gopkg.toml Merge remote-tracking branch 'remotes/origin/develop' into bucky/sig-name 6 years ago
LICENSE Change license to Apache2.0 9 years ago
Makefile fix makefile 6 years ago
README.md Fix dead link in README.md (#106) 6 years ago
amino.go Merge remote-tracking branch 'remotes/origin/develop' into bucky/sig-name 6 years ago
armor.go linter: add metalinter to Makefile & apply some fixes 7 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 Remove error from priv.PubKey() (#131) 6 years ago
example_test.go example: fix func suffix 7 years ago
hash.go Add seed-able cryptographic random. 8 years ago
ledger_common.go Add ed25519, tests will fail until ed25519 verification fix 6 years ago
ledger_secp256k1.go Remove error from priv.PubKey() (#131) 6 years ago
ledger_test.go Remove error from priv.PubKey() (#131) 6 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"}