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