mirror of
https://github.com/Nystik-gh/ignis.git
synced 2026-06-17 04:35:53 +00:00
13 lines
271 B
JavaScript
13 lines
271 B
JavaScript
// Crypto shim
|
|
// Obsidian uses: scrypt, randomBytes, createHash
|
|
|
|
import { randomBytes } from './random-bytes.js';
|
|
import { createHash } from './create-hash.js';
|
|
import { scrypt } from './scrypt.js';
|
|
|
|
export const cryptoShim = {
|
|
randomBytes,
|
|
createHash,
|
|
scrypt,
|
|
};
|