// Node 20+ globally available Crypto Module -OR- Browser Crypto Module const globalCrypto = (globalThis.crypto)?.webcrypto || globalThis.crypto // Globally available crypto (Node or Browser) -OR- Node Web Crypto (We can get rid of this in April 2025 after Node 18 is EOL) export const crypto = globalCrypto || require('node:crypto').webcrypto