Files
ignis/shims/crypto/index.js

10 lines
205 B
JavaScript
Raw Normal View History

2026-03-11 22:08:30 +01:00
import { randomBytes } from "./random-bytes.js";
import { createHash } from "./create-hash.js";
import { scrypt } from "./scrypt.js";
2026-03-07 18:11:46 +01:00
export const cryptoShim = {
randomBytes,
createHash,
scrypt,
};