This commit is contained in:
unknown
2018-11-08 08:16:32 +00:00
parent 4bd022a89c
commit 49e92361df
2 changed files with 22 additions and 6 deletions

View File

@@ -7,11 +7,8 @@
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="favicon.js"></script> <script src="favicon.js"></script>
<script src="md5.js"></script> <script src="sha1.min.js"></script>
<script> <script src="openpgp.min.js"></script>
page = document.documentElement.outerHTML;
pagemd5 = md5(document.documentElement.outerHTML);
</script>
<style> <style>
html, body { html, body {
height: 95%; height: 95%;
@@ -51,8 +48,15 @@
<div class="main"> <div class="main">
<h1 class="display-4">browserPGP</h1> <h1 class="display-4">browserPGP</h1>
<a>A website that makes using PGP simple and secure. All work is done client side, so no private data leaves your computer.<br><br>If you want to be extra secure, disable internet while using this site.<br><br>- ar0n#1462</a> <a>A website that makes using PGP simple and secure. All work is done client side, so no private data leaves your computer.<br><br>If you want to be extra secure, disable internet while using this site.<br><br>- ar0n#1462</a>
<br><br> <br>
<div id="worksCheck"></div>
<br>
<img src="pgp.png"> <img src="pgp.png">
</div> </div>
</body> </body>
<script>
if (typeof openpgp.config === "object") {
document.getElementById('worksCheck').insertAdjacentHTML('beforeend', '<br><div class="alert alert-success" role="alert">' + openpgp.config.versionstring + ' is functioning.</div>');
}
</script>
</html> </html>

12
sha1.min.js vendored Normal file

File diff suppressed because one or more lines are too long