2013-12-27 20:21:08 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
"crypto/sha256"
|
|
|
|
"encoding/hex"
|
2014-01-01 02:07:29 +00:00
|
|
|
_"fmt"
|
|
|
|
_"math"
|
2014-01-08 22:43:20 +00:00
|
|
|
"github.com/obscuren/sha3"
|
2013-12-27 20:21:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func Uitoa(i uint32) string {
|
|
|
|
return strconv.FormatUint(uint64(i), 10)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Sha256Hex(data []byte) string {
|
|
|
|
hash := sha256.Sum256(data)
|
|
|
|
|
|
|
|
return hex.EncodeToString(hash[:])
|
|
|
|
}
|
|
|
|
|
|
|
|
func Sha256Bin(data []byte) []byte {
|
|
|
|
hash := sha256.Sum256(data)
|
|
|
|
|
|
|
|
return hash[:]
|
|
|
|
}
|
2014-01-01 02:07:29 +00:00
|
|
|
|
2014-01-08 22:43:20 +00:00
|
|
|
func Sha3Bin(data []byte) []byte {
|
|
|
|
d := sha3.NewKeccak224()
|
|
|
|
d.Reset()
|
|
|
|
d.Write(data)
|
|
|
|
|
|
|
|
return d.Sum(nil)
|
|
|
|
}
|
|
|
|
|
2014-01-01 02:07:29 +00:00
|
|
|
// Helper function for comparing slices
|
|
|
|
func CompareIntSlice(a, b []int) bool {
|
|
|
|
if len(a) != len(b) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
for i, v := range a {
|
|
|
|
if v != b[i] {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the amount of nibbles that match each other from 0 ...
|
|
|
|
func MatchingNibbleLength(a, b []int) int {
|
|
|
|
i := 0
|
|
|
|
for CompareIntSlice(a[:i+1], b[:i+1]) && i < len(b) {
|
|
|
|
i+=1
|
|
|
|
}
|
|
|
|
|
|
|
|
//fmt.Println(a, b, i-1)
|
|
|
|
|
|
|
|
return i
|
|
|
|
}
|
2014-01-08 22:43:20 +00:00
|
|
|
|
|
|
|
func Hex(d []byte) string {
|
|
|
|
return hex.EncodeToString(d)
|
|
|
|
}
|