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.
 
 
 
 
 
 
Austin Abell 7cd55a7733 crypto/amino: add function to modify key codec (#4112) 5 years ago
..
armor crypto: revert to mainline Go crypto lib (#3027) 6 years ago
ed25519 gocritic (1/2) (#3836) 5 years ago
encoding/amino crypto/amino: add function to modify key codec (#4112) 5 years ago
internal/benchmarking gocritic (1/2) (#3836) 5 years ago
merkle Add more comments about the hard-coded limits (#4100) 5 years ago
multisig Fix linter errors thrown by `lll` (#3970) 5 years ago
secp256k1 Fix linter errors thrown by `lll` (#3970) 5 years ago
tmhash TMHASH is 32 bytes. Closes #1990 (#2732) 6 years ago
xchacha20poly1305 Fix linter errors thrown by `lll` (#3970) 5 years ago
xsalsa20symmetric libs/common: remove deprecated PanicXXX functions (#3595) 5 years ago
CHANGELOG.md mv go-crypto files to crypto dir 6 years ago
README.md Update README.md (#4085) 5 years ago
crypto.go validate reactor messages (#2711) 6 years ago
doc.go crypto: delete unused code (#3426) 5 years ago
example_test.go crypto: delete unused code (#3426) 5 years ago
hash.go crypto: delete unused code (#3426) 5 years ago
random.go remove MixEntropy (#3278) 5 years ago
random_test.go crypto/random: Use chacha20, add forward secrecy (#2562) 6 years ago
version.go mv go-crypto files to crypto dir 6 years ago

README.md

crypto

crypto is the cryptographic package adapted for Tendermint's uses

Importing it

To get the interfaces, import "github.com/tendermint/tendermint/crypto"

For any specific algorithm, use its specific module e.g. import "github.com/tendermint/tendermint/crypto/ed25519"

If you want to decode bytes into one of the types, but don't care about the specific algorithm, use import "github.com/tendermint/tendermint/crypto/amino"

Binary encoding

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

JSON Encoding

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

Example Amino:JSON encodings:

ed25519.PrivKeyEd25519     - {"type":"954568A3288910","value":"EVkqJO/jIXp3rkASXfh9YnyToYXRXhBr6g9cQVxPFnQBP/5povV4HTjvsy530kybxKHwEi85iU8YL0qQhSYVoQ=="}
ed25519.PubKeyEd25519      - {"type":"AC26791624DE60","value":"AT/+aaL1eB0477Mud9JMm8Sh8BIvOYlPGC9KkIUmFaE="}
crypto.PrivKeySecp256k1   - {"type":"019E82E1B0F798","value":"zx4Pnh67N+g2V+5vZbQzEyRerX9c4ccNZOVzM9RvJ0Y="}
crypto.PubKeySecp256k1    - {"type":"F8CCEAEB5AE980","value":"A8lPKJXcNl5VHt1FK8a244K9EJuS4WX1hFBnwisi0IJx"}