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.

30 lines
1.2 KiB

  1. # crypto
  2. crypto is the cryptographic package adapted for Tendermint's uses
  3. ## Importing it
  4. To get the interfaces,
  5. `import "github.com/tendermint/tendermint/crypto"`
  6. For any specific algorithm, use its specific module e.g.
  7. `import "github.com/tendermint/tendermint/crypto/ed25519"`
  8. If you want to decode bytes into one of the types, but don't care about the specific algorithm, use
  9. `import "github.com/tendermint/tendermint/crypto/amino"`
  10. ## Binary encoding
  11. For Binary encoding, please refer to the [Tendermint encoding spec](https://github.com/tendermint/tendermint/blob/master/docs/spec/blockchain/encoding.md).
  12. ## JSON Encoding
  13. crypto `.Bytes()` uses Amino:binary encoding, but Amino:JSON is also supported.
  14. ```go
  15. Example Amino:JSON encodings:
  16. ed25519.PrivKeyEd25519 - {"type":"954568A3288910","value":"EVkqJO/jIXp3rkASXfh9YnyToYXRXhBr6g9cQVxPFnQBP/5povV4HTjvsy530kybxKHwEi85iU8YL0qQhSYVoQ=="}
  17. ed25519.PubKeyEd25519 - {"type":"AC26791624DE60","value":"AT/+aaL1eB0477Mud9JMm8Sh8BIvOYlPGC9KkIUmFaE="}
  18. crypto.PrivKeySecp256k1 - {"type":"019E82E1B0F798","value":"zx4Pnh67N+g2V+5vZbQzEyRerX9c4ccNZOVzM9RvJ0Y="}
  19. crypto.PubKeySecp256k1 - {"type":"F8CCEAEB5AE980","value":"A8lPKJXcNl5VHt1FK8a244K9EJuS4WX1hFBnwisi0IJx"}
  20. ```