fix: revert again to using s5's original endian implementations
This commit is contained in:
parent
ba00e15518
commit
7ca0a67ba5
|
@ -1,16 +1,20 @@
|
||||||
package utils
|
package utils
|
||||||
|
|
||||||
import "encoding/binary"
|
|
||||||
|
|
||||||
func EncodeEndian(value uint64, length int) []byte {
|
func EncodeEndian(value uint64, length int) []byte {
|
||||||
byteSlice := make([]byte, length)
|
res := make([]byte, length)
|
||||||
binary.LittleEndian.PutUint64(byteSlice, value)
|
|
||||||
return byteSlice
|
for i := length - 1; i >= 0; i-- {
|
||||||
|
res[i] = byte(value & 0xff)
|
||||||
|
value = value >> 8
|
||||||
|
}
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
func DecodeEndian(bytes []byte) uint64 {
|
||||||
|
var total uint64
|
||||||
|
|
||||||
|
for _, b := range bytes {
|
||||||
|
total = total*256 + uint64(b)
|
||||||
}
|
}
|
||||||
|
|
||||||
func DecodeEndian(byteSlice []byte) uint64 {
|
return total
|
||||||
buffer := make([]byte, 8)
|
|
||||||
copy(buffer, byteSlice)
|
|
||||||
|
|
||||||
return binary.LittleEndian.Uint64(buffer)
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue