Commit 3d74fe16 authored by Marten Seemann's avatar Marten Seemann

remove unused function reverseBytesBits

parent e66162b7
......@@ -5,7 +5,6 @@ import (
"encoding/json"
"fmt"
"math/big"
"math/bits"
"strings"
kbucket "github.com/libp2p/go-libp2p-kbucket"
......@@ -28,15 +27,6 @@ func BytesKey(b []byte) Key {
// First bit (in each byte) is least significant.
type Key []byte
// reverseBytesBits reverses the bit-endianness of each byte in a slice.
func reverseBytesBits(blob []byte) []byte {
r := make([]byte, len(blob))
for i := range blob {
r[i] = bits.Reverse8(blob[i])
}
return r
}
func (k Key) BitAt(offset int) byte {
if k[offset/8]&(byte(1)<<(7-offset%8)) == 0 {
return 0
......
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