mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-04 03:59:07 -05:00
Bumps [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) from 5.4.2 to 5.11.0. - [Release notes](https://github.com/go-git/go-git/releases) - [Commits](https://github.com/go-git/go-git/compare/v5.4.2...v5.11.0) --- updated-dependencies: - dependency-name: github.com/go-git/go-git/v5 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
12 lines
287 B
Go
12 lines
287 B
Go
package sha1cd
|
|
|
|
import "hash"
|
|
|
|
type CollisionResistantHash interface {
|
|
// CollisionResistantSum extends on Sum by returning an additional boolean
|
|
// which indicates whether a collision was found during the hashing process.
|
|
CollisionResistantSum(b []byte) ([]byte, bool)
|
|
|
|
hash.Hash
|
|
}
|