mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-10 01:27:54 +00:00
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.28.0 to 1.28.1. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md) - [Commits](https://github.com/containers/storage/compare/v1.28.0...v1.28.1) Signed-off-by: dependabot[bot] <support@github.com>
29 lines
706 B
Go
29 lines
706 B
Go
// Copyright 2014-2021 Ulrich Kunitz. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package hash
|
|
|
|
// Roller provides an interface for rolling hashes. The hash value will become
|
|
// valid after hash has been called Len times.
|
|
type Roller interface {
|
|
Len() int
|
|
RollByte(x byte) uint64
|
|
}
|
|
|
|
// Hashes computes all hash values for the array p. Note that the state of the
|
|
// roller is changed.
|
|
func Hashes(r Roller, p []byte) []uint64 {
|
|
n := r.Len()
|
|
if len(p) < n {
|
|
return nil
|
|
}
|
|
h := make([]uint64, len(p)-n+1)
|
|
for i := 0; i < n-1; i++ {
|
|
r.RollByte(p[i])
|
|
}
|
|
for i := range h {
|
|
h[i] = r.RollByte(p[i+n-1])
|
|
}
|
|
return h
|
|
}
|