ref: ab174c473618dd3743881cf44e02c2db4d1ecd5f
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 )