encrypt_decrypt_test.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // Copyright 2014 The go-ethereum Authors
  2. // This file is part of go-ethereum.
  3. //
  4. // go-ethereum is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // go-ethereum is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Lesser General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Lesser General Public License
  15. // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
  16. package crypto
  17. import (
  18. "bytes"
  19. "fmt"
  20. "testing"
  21. "github.com/ethereum/go-ethereum/common"
  22. )
  23. func TestBox(t *testing.T) {
  24. prv1 := ToECDSA(common.Hex2Bytes("4b50fa71f5c3eeb8fdc452224b2395af2fcc3d125e06c32c82e048c0559db03f"))
  25. prv2 := ToECDSA(common.Hex2Bytes("d0b043b4c5d657670778242d82d68a29d25d7d711127d17b8e299f156dad361a"))
  26. pub2 := ToECDSAPub(common.Hex2Bytes("04bd27a63c91fe3233c5777e6d3d7b39204d398c8f92655947eb5a373d46e1688f022a1632d264725cbc7dc43ee1cfebde42fa0a86d08b55d2acfbb5e9b3b48dc5"))
  27. message := []byte("Hello, world.")
  28. ct, err := Encrypt(pub2, message)
  29. if err != nil {
  30. fmt.Println(err.Error())
  31. t.FailNow()
  32. }
  33. pt, err := Decrypt(prv2, ct)
  34. if err != nil {
  35. fmt.Println(err.Error())
  36. t.FailNow()
  37. }
  38. if !bytes.Equal(pt, message) {
  39. fmt.Println("ecies: plaintext doesn't match message")
  40. t.FailNow()
  41. }
  42. _, err = Decrypt(prv1, pt)
  43. if err == nil {
  44. fmt.Println("ecies: encryption should not have succeeded")
  45. t.FailNow()
  46. }
  47. }