🐾
SoundEase
Professional Edition
Enter the password from your SoundEase Professional Edition purchase email.
Password in your purchase confirmation email.
No password? See pricing β†’   ← Home
`; async function sha256(msg) { const buf = await crypto.subtle.digest('SHA-256', new TextEncoder().encode(msg)); return Array.from(new Uint8Array(buf)).map(b=>b.toString(16).padStart(2,'0')).join(''); } async function unlock() { const val = document.getElementById('gatePass').value.trim(); if (!val) return; const h = await sha256(val); if (h === HASH) { sessionStorage.setItem(KEY, '1'); showApp(); } else { const e = document.getElementById('gateError'); e.textContent = 'Incorrect password. Check your purchase confirmation email.'; e.style.display = 'block'; document.getElementById('gatePass').value = ''; document.getElementById('gatePass').focus(); } } function showApp() { document.getElementById('gate').style.display = 'none'; const iframe = document.getElementById('app'); iframe.style.display = 'block'; iframe.srcdoc = APP; } if (sessionStorage.getItem(KEY) === '1') showApp();