shithub: furgit

ref: df1f2fb3daa1acd25c88510f259d5535fb482126
dir: /object/id/algorithm_new.go/

View raw version
package objectid

import "hash"

// New returns a new hash.Hash for this algorithm.
func (algo Algorithm) New() (hash.Hash, error) {
	newFn := algo.info().new
	if newFn == nil {
		return nil, ErrInvalidAlgorithm
	}

	return newFn(), nil
}