10 lines
299 B
JavaScript
10 lines
299 B
JavaScript
// https://nodejs.org/api/crypto.html
|
|
// https://github.com/unjs/uncrypto
|
|
export const subtle = globalThis.crypto?.subtle;
|
|
export const randomUUID = () => {
|
|
return globalThis.crypto?.randomUUID();
|
|
};
|
|
export const getRandomValues = (array) => {
|
|
return globalThis.crypto?.getRandomValues(array);
|
|
};
|