1 // TinyJS Runtime — Crypto stub for Service Worker 2 // Service workers cannot use dynamic import(), and the SW doesn't need crypto. 3 4 export async function init() {} 5 export function PubKeyFromSecKey() { return null; } 6 export function SignSchnorr() { return null; } 7 export function VerifySchnorr() { return false; } 8