mirror of
https://github.com/Nystik-gh/ignis.git
synced 2026-06-17 04:35:53 +00:00
12 lines
266 B
JavaScript
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,
|
|
};
|