staticrypt/README.md

45 wiersze
2.6 KiB
Markdown
Czysty Zwykły widok Historia

2017-06-14 18:41:14 +00:00
# StatiCrypt
Based on the [crypto-js](https://github.com/brix/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](https://robinmoisson.github.io/staticrypt/example.html)).
2017-06-15 11:21:59 +00:00
You can encrypt a file online at https://robinmoisson.github.io/staticrypt.
2017-06-14 18:41:14 +00:00
## HOW IT WORKS
2017-06-15 11:21:59 +00:00
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 example) and you're done: the javascript will prompt users for password, decrypt the page and load your HTML.
2017-06-14 18:41:14 +00:00
2017-06-15 11:21:59 +00:00
**Disclaimer** TL;DR: if you have extra sensitive banking data you should probably use something else :)
2017-06-14 18:41:14 +00:00
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/dictionary attacks would be trivial to do at a really fast pace: **use a long, unusual passphrase!**
2017-06-14 18:41:14 +00:00
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 !
2017-12-28 11:32:09 +00:00
## CLI
Staticrypt is available through npm as a CLI, install with `npm install -g staticrypt` and use as follow:
Usage: staticrypt <input> <password> [options]
Options:
--help Show help [boolean]
--version Show version number [boolean]
-e, --embed Whether or not to embed crypto-js in the page (or use an
external CDN) [boolean] [default: false]
-o, --output File name / path for generated encrypted file
[string] [default: null]
-t, --title Title for output HTML page
[string] [default: "Protected Page"]
-i, --instructions Special instructions to display to the user.
[string] [default: null]
Example usages:
- `staticrypt test.html mysecretpassword` -> creates a `test_encrypted.html` file
- `find . -type f -name "*.html" -exec staticrypt {} mypassword \;` -> create encrypted files for all HTML files in your directory
Thanks [Aaron Coplan](https://github.com/AaronCoplan) for bringing the CLI to life !