ignis/shims/crypto/index.js
2026-03-11 22:08:30 +01:00

9 lines
205 B
JavaScript

import { randomBytes } from "./random-bytes.js";
import { createHash } from "./create-hash.js";
import { scrypt } from "./scrypt.js";
export const cryptoShim = {
randomBytes,
createHash,
scrypt,
};