├── README.md ├── demo.gif └── encrypted.html /README.md: -------------------------------------------------------------------------------- 1 | Encrypted Textarea 2 | ================== 3 | 4 | Offline, client-side encrypted plaintext editor in an HTML file. All text is only persisted in an [encrypted](http://bitwiseshiftleft.github.io/sjcl/) and password-protected state in localStorage when editing or in HTML when exported. To export decrypted plaintext, select all/copy/paste. 5 | 6 | [Try it!](https://srpeck.github.io/encrypted/encrypted.html) 7 | 8 | 9 | ![](demo.gif) 10 | -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srpeck/encrypted/0a6c5f5c01fb765b60fee8f60ba0a486fa4b9063/demo.gif -------------------------------------------------------------------------------- /encrypted.html: -------------------------------------------------------------------------------- 1 | 2 | Save as encrypted HTML
3 | 73 | --------------------------------------------------------------------------------