mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 04:15:48 +02:00
11 lines
287 B
Go
11 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
|
|
}
|