11 lines
266 B
JavaScript
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,
|
|
};
|