This page is password protected.

Password

Sorry, please try again. Success!  
Protected by PageCrypt
", " "); srcDoc.set(contentFrame, decrypted); successEl.style.display = "inline"; passEl.disabled = true; submitPass.disabled = true; setTimeout(function() { dialogWrap.style.display = "none"; }, 1000); } catch (e) { invalidPassEl.style.display = "inline"; passEl.value = ""; } } submitPass.onclick = doSubmit; passEl.onkeypress = function(e){ if (!e) e = window.event; var keyCode = e.keyCode || e.which; invalidPassEl.style.display = "none"; if (keyCode == '13'){ // Enter pressed doSubmit(); return false; } } function decryptFile(contents, password, salt, iv) { var _cp = CryptoJS.lib.CipherParams.create({ ciphertext: contents }); var key = CryptoJS.PBKDF2(password, salt, { keySize: 256/32, iterations: 100 }); var decrypted = CryptoJS.AES.decrypt(_cp, key, {iv: iv}); return decrypted.toString(CryptoJS.enc.Utf8); }