UNPKG

@push.rocks/smarthash

Version:

Cross-environment hash functions (SHA256 and MD5) for Node.js and browsers, with support for strings, streams, and files.

6 lines (4 loc) 195 B
import * as plugins from './nodehash.plugins.js'; export const md5FromString = async (stringToHash: string) => { return plugins.crypto.createHash('md5').update(stringToHash).digest('hex'); };