UNPKG

@xrplf/isomorphic

Version:

A collection of isomorphic and tree-shakeable crypto hashes and utils for xrpl.js

9 lines (6 loc) 223 B
import { ripemd160 as nobleImpl } from '@noble/hashes/ripemd160' import wrapNoble from '../internal/wrapNoble' /** * Wrap noble-libs's ripemd160 implementation in HashFn */ export const ripemd160 = wrapNoble(nobleImpl)