aboutsummaryrefslogtreecommitdiff
path: root/object/id/algorithm_sum.go
blob: 26ad2ff688b3b8198728a35aa38eeca31e2f4344 (about) (plain) (blame)
1
2
3
4
5
6
package objectid

// Sum computes an object ID from raw data using the selected algorithm.
func (algo Algorithm) Sum(data []byte) ObjectID {
	return algo.info().sum(data)
}