ref: df1f2fb3daa1acd25c88510f259d5535fb482126
dir: /object/id/algorithm.go/
package objectid //#nosec gosec // Algorithm identifies the hash algorithm used for Git object IDs. type Algorithm uint8 const ( AlgorithmUnknown Algorithm = iota AlgorithmSHA1 AlgorithmSHA256 )