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.

40 lines
955 B

  1. package crypto
  2. import (
  3. "github.com/tendermint/tendermint/crypto/tmhash"
  4. cmn "github.com/tendermint/tendermint/libs/common"
  5. )
  6. const (
  7. // AddressSize is the size of a pubkey address.
  8. AddressSize = tmhash.TruncatedSize
  9. )
  10. // An address is a []byte, but hex-encoded even in JSON.
  11. // []byte leaves us the option to change the address length.
  12. // Use an alias so Unmarshal methods (with ptr receivers) are available too.
  13. type Address = cmn.HexBytes
  14. func AddressHash(bz []byte) Address {
  15. return Address(tmhash.SumTruncated(bz))
  16. }
  17. type PubKey interface {
  18. Address() Address
  19. Bytes() []byte
  20. VerifyBytes(msg []byte, sig []byte) bool
  21. Equals(PubKey) bool
  22. }
  23. type PrivKey interface {
  24. Bytes() []byte
  25. Sign(msg []byte) ([]byte, error)
  26. PubKey() PubKey
  27. Equals(PrivKey) bool
  28. }
  29. type Symmetric interface {
  30. Keygen() []byte
  31. Encrypt(plaintext []byte, secret []byte) (ciphertext []byte)
  32. Decrypt(ciphertext []byte, secret []byte) (plaintext []byte, err error)
  33. }