Files
opentimestamps/ots/crypto.go
2025-04-11 13:31:02 +02:00

10 lines
175 B
Go

package ots
import (
deprecated_ripemd160 "golang.org/x/crypto/ripemd160"
)
func ripemd160(curr []byte, arg []byte) []byte {
return deprecated_ripemd160.New().Sum(curr)
}