Current section

Files

Jump to
gossamer src gossamer crypto.ffi.mjs
Raw

src/gossamer/crypto.ffi.mjs

// src/gossamer/crypto.ffi.ts
var get_random_values = (array) => {
return globalThis.crypto.getRandomValues(array);
};
var random_uuid = () => {
return globalThis.crypto.randomUUID();
};
export {
get_random_values,
random_uuid
};