ignis/src/shims/crypto/index.js
2026-03-23 13:04:35 +01:00

11 lines
266 B
JavaScript

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