Commit 6ab61f2c authored by obscuren's avatar obscuren

Added byte helpers

parent ebef4e10
package main
import (
"bytes"
"encoding/binary"
"fmt"
)
func NumberToBytes(num uint64, bits int) []byte {
buf := new(bytes.Buffer)
err := binary.Write(buf, binary.BigEndian, num)
if err != nil {
fmt.Println("binary.Write failed:", err)
}
return buf.Bytes()[buf.Len()-(bits / 8):]
}
func BytesToNumber(b []byte) (number uint64) {
buf := bytes.NewReader(b)
err := binary.Read(buf, binary.LittleEndian, &number)
if err != nil {
fmt.Println("binary.Read failed:", err)
}
return
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment