We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 771663d commit 831c0b9Copy full SHA for 831c0b9
test/main_test.go
@@ -354,7 +354,8 @@ func testxx() {
354
hb, _ := hex.DecodeString(data)
355
out2 := crypto.Keccak256(hb)
356
fmt.Println(hex.EncodeToString(out2))
357
- encodeString2 := base64.StdEncoding.EncodeToString(out2)
+ input1, _ := hex.DecodeString(string(out2))
358
+ encodeString2 := base64.StdEncoding.EncodeToString(input1)
359
fmt.Println(encodeString2)
360
361
input := []byte("io1eana2t400zc0mzg9duptscke43p48rpr9d6say")
0 commit comments