mirror of
https://github.com/status-im/status-go.git
synced 2025-02-01 17:38:36 +00:00
679391999f
* feat_: LogOnPanic linter * fix_: add missing defer LogOnPanic * chore_: make vendor * fix_: tests, address pr comments * fix_: address pr comments
20 lines
367 B
Go
20 lines
367 B
Go
//go:build purego || !(amd64 || arm64)
|
|
// +build purego !amd64,!arm64
|
|
|
|
package keyset
|
|
|
|
func Lookup(keyset []byte, key []byte) int {
|
|
if len(key) > 16 {
|
|
return len(keyset) / 16
|
|
}
|
|
var padded [16]byte
|
|
copy(padded[:], key)
|
|
|
|
for i := 0; i < len(keyset); i += 16 {
|
|
if string(padded[:]) == string(keyset[i:i+16]) {
|
|
return i / 16
|
|
}
|
|
}
|
|
return len(keyset) / 16
|
|
}
|