This is a spiritual successor to the "Encrypted Notepad" app previously developed on SourceForge by the same author. The goal is still the same: "Encrypted Notepad II" does only one thing, but aims to do it perfectly - a Notepad-like simple text editor where files are saved (and later loaded) encrypted with industrial strength algorithms. No ads, no network connection required, no bloat, just run it. If you know how to use the Windows Notepad app, you know how to use this app. It's a Notepad clone where the file format is PGP's symmetrically encrypted ASCII-armoured (.asc
) data.
This app works on old-fashioned files - not internal databases, not proprietary storage, not even SQLite. There's nothing to import or export. Each document is its own file, saved in the encrypted OpenPGP ASCII-armoured format. That's it.
Alpha version 0.3 - major features are done (de/encryption is complete), but there's space for improvement, especially in UX.
Note from the author
I am an Open Source veteran. I've put my code out there since before GitHub existed, and you can see my (early and embarrasing) work on SourceForge. All this time, I did it because I made something I want to share with the world, without expecting anything in return. But that isn't really sustainable. Software needs to be maintained. Bitrot is real. Operating systems get updated and move on, and once published, apps might not even run in a decade. That's what's happened with the original Encrypted Notepad.
Encrypted Notepad II is my experiment in combining Open Source with a business model. The source code in its entirety is on GitHub, but the binaries are not. If you want to build them yourself, you are welcome to. If Linux distro maintainers want to include it, they are also welcome to. But if you want to download binaries for Windows, Android, or even Linux (and possibly MacOS and IOS too) - I'm going to charge for that. Not as a subscription, but as a one-time payment with a lifetime of upgrades.
Here is a link where you can buy binaries and priority support for Encrypted Notepad II. By buying this product you support its future development, and get this in return:
- Windows, Linux, and Android versions of the software (OS X and iOS will be provided if there's enough interest)
- Lifetimes of updates for those binaries, for a single payment
- Priority support for any issues.
This is an open source app developed on GitHub. What you are buying here are the binaries and priority support. If you know how to, you can always build your own binaries from source.
You will need Go 1.22+ installed. After cloning the repo, run:
go build
and run:
./EncryptedNotepad2
For Linux builds, you'll also need the following packages installed before building:
xorg-dev
The files are encrypted using AES-256 and stored in the PGP/OpenPGP .asc
format, that is interoperable with any other tool using the same standard. The OpenPGP and general crypto libraries used are:
Feel free to inspect go.mod
for details.
No. Really, there's no need to. Either you trust AES, and in that case this is what you want, or you don't, in which case you most likely don't need this tool.
Maybe - depends if there's a good use case and enough people want it.
When saving in OpenPGP's message format (the .asc
) files, the mode is dictated by the OpenPGP spec. It is OCFB-MDC. It is an AEAD mode, providing tamper protection as well as encryption.
It's because of Fyne... but it's getting better all the time.
Encrypted Notepad II is written in Go, and that means it's mostly statically compiled on all platforms. It uses the Fyne UI toolkit, and that means it uses almost no operating system-provided UI facilities on any platform. The flip side of that is that everything needs to be built-in into the single executable, making it bigger than expected for such a compact app.
The old version was written in Java, and that means it required a JRE to run. In that light, the new version is actually lighter-weight.