StatiCrypt uses AES-256 to encrypt your HTML file with your passphrase and return a static page
 
 
 
Go to file
Robin Moisson 893f96567b Create LICENSE 2017-06-14 20:44:03 +02:00
.gitignore init: working template generation 2017-04-29 18:44:06 +05:30
LICENSE Create LICENSE 2017-06-14 20:44:03 +02:00
README.md Create README.md 2017-06-14 20:41:14 +02:00
bootstrap.min.css init: working template generation 2017-04-29 18:44:06 +05:30
crypto-js.js init: working template generation 2017-04-29 18:44:06 +05:30
example.html add example + explain text 2017-06-14 16:19:24 +02:00
index.html load libraries from CDN on generation page 2017-06-14 20:23:46 +02:00
jquery-3.2.1.min.js init: working template generation 2017-04-29 18:44:06 +05:30
jsrender.js init: working template generation 2017-04-29 18:44:06 +05:30
password_template.html add example + explain text 2017-06-14 16:19:24 +02:00

README.md

StatiCrypt

Based on the crypto-js library, StatiCrypt uses AES-256 to encrypt your string with your passphrase in your browser (client side).

Download your encrypted string in a HTML page with a password prompt you can upload anywhere (see example).

HOW IT WORKS

StatiCrypt generates a static, password protected page that can be decrypted in-browser: just send or upload the generated page to a place serving static content (github pages, for exemple) and you're done: the javascript will prompt users for password, decrypt the page and load your HTML.

Disclaimer TL;DR: if you have extra sensitive data you should probably use something else :)

StatiCrypt basically encrypts your page and puts everything with a user-friendly way to use a password in the new file.

AES-256 is state of the art but brute-force/dictionnary attacks are trivial to do at a really fast pace: use a long, unusual passphrase!

The concept is simple but this is a side project - not purporting to be bulletproof, feel free to contribute or report any thought to the GitHub project !