UNPKG

@whook/whook

Version:

Build strong and efficient REST web services.

7 lines 235 B
import { createHash as _createHash } from 'node:crypto'; export function createHash(data, len) { return _createHash('shake256', { outputLength: len }) .update(data) .digest('hex'); } //# sourceMappingURL=hash.js.map