A free online tool to save your personal notes, passwords or sensitive data securely encrypted and stored locally.
All content you write will be stored in your computer only, nothing is sent nor stored in this server. This ensures that your content is yours and you don't need to trust in someone else. But please, while this is the best way to keep your information secure, you are the only weak point and if you lose either the Salt (more on it below), the Password or your files you will lose everything forever. If that happens I'm sorry but there's nothing I can do.
FYI: I use Google Analytics so I can see which of my projects are more popular (check them out here) and prioritize development and maintenance. Analytics only accesses non-personal info like time spent on page or what country you are visiting from, nothing else, so don't worry. You can easily disable Analytics by installing a browser extension. Privacy Policy
A Salt is an extra and necessary measure to strengthen the security. How it works is by making your password longer. Imagine your password is pie
, someone could execute a Brute force attack by testing different passwords, starting with aaa
then aab
, aac
, aad
, aae
… and so on until he got to pie
. That wouldn't take long to crack…
The Salt is a very long text that is appended to your password so your password looks more like: pie
(see your password at the end of it?). This will make it more difficult to execute the attack and it could take a very long time to crack.
Luckily, you don't need to remember the Salt every time, it is stored in your browser. But just in case you delete your browsing history/cookies or you change computers, make sure to store it somewhere (send it to your email, in a pendrive, etc.).
I'll keep this short, but I really need you to understand these simple concepts:
You can review all the code of this tool by viewing the source code, it is pretty small and I've kept it readable and unminified for this purpose. You (or a tech savvy friend) should be able to read it for your peace of mind. If you have any ideas or comments on how to improve this tool please get in touch.
I am not responsible for any data loss, hacking or anything else. I've developed and released this tool for free on my personal time. All the code of this tool is freely available for you to review.