ref: ab174c473618dd3743881cf44e02c2db4d1ecd5f
dir: /object/id/algorithm_sum.go/
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)
}