mirror of
https://github.com/containers/podman.git
synced 2025-12-12 17:57:31 +08: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>
15 lines
480 B
Go
15 lines
480 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 provides rolling hashes.
|
|
|
|
Rolling hashes have to be used for maintaining the positions of n-byte
|
|
sequences in the dictionary buffer.
|
|
|
|
The package provides currently the Rabin-Karp rolling hash and a Cyclic
|
|
Polynomial hash. Both support the Hashes method to be used with an interface.
|
|
*/
|
|
package hash
|