import * as crypto from 'node:crypto' export function md5 (str) { return crypto.createHash('md5').update(str).digest('hex') }