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.

44 lines
1.2 KiB

  1. package cryptonight
  2. import "testing"
  3. import "encoding/hex"
  4. func Test_Cryptonight_Hash(t *testing.T) {
  5. // there are 4 sub algorithms, basically blake , groestl , jh , skein
  6. // other things are common, these tect vectors have been manually pulled from c codes
  7. blake_hash := cryptonight([]byte("This is a testi" + "\x01"))
  8. if hex.EncodeToString(blake_hash) != "7958d1afe0c46670642c0341f92e89bf6de6a2573ef89742237162e66ea4a121" {
  9. t.Error("Cryptonight blake_hash testing Failed\n")
  10. return
  11. }
  12. // this is from cryptonote whitepaper
  13. groestl_hash := cryptonight([]byte("This is a test" + "\x01"))
  14. if hex.EncodeToString(groestl_hash) != "a084f01d1437a09c6985401b60d43554ae105802c5f5d8a9b3253649c0be6605" {
  15. t.Error("Cryptonight testing Failed\n")
  16. return
  17. }
  18. jh_hash := cryptonight([]byte("This is a test2" + "\x01"))
  19. if hex.EncodeToString(jh_hash) != "6f93b51852d1a47277c62e720bf0e10bf90e92123847be246f67e3fd2639f4b4" {
  20. t.Error("Cryptonight testing Failed\n")
  21. return
  22. }
  23. skein_hash := cryptonight([]byte("This is a testw" + "\x01"))
  24. if hex.EncodeToString(skein_hash) != "3174ef437b24fd30e81d307d9b7d02ba21eb6f627cafc9d8134ea63adc4985b0" {
  25. t.Error("Cryptonight testing Failed\n")
  26. return
  27. }
  28. }