1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-07 22:02:56 +03:00
Files
lazygit/vendor/github.com/pjbgf/sha1cd/detection.go
Stefan Haller 4cf49ff449 Bump go-git
2025-04-09 11:23:55 +02:00

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
}