blob: a695889c5a8a5915aea3161174adca3d46380bfb (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package objectid
//#nosec gosec
// Algorithm identifies the hash algorithm used for Git object IDs.
type Algorithm uint8
const (
AlgorithmUnknown Algorithm = iota
AlgorithmSHA1
AlgorithmSHA256
)
|