Files
ignis/packages/shim/src/crypto/index.js
2026-05-20 20:49:28 +02:00

12 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,
};