PLEASE NOTE THAT WE ARE NOT CURRENTLY ACCEPTING PRs, UNTIL SOME INITIAL REFACTORING WORK IS COMPLETE.
SealNote Plus is a simple notes/notepad application which focuses on security and simplicity. Your notes are password protected using 256-bit AES encryption. Keep sensitive information always available without compromising security!
Application locks prevents user from opening application, but does not secure the storage. Hence adversary can simply access the storage file directly and read the content.
They can't. No one can, regardless how they access the data file (unless they have your secret password). The application uses a technique called encryption. Encryption uses your password to convert notes to unreadable form which makes no sense to anyone even computer. This can be converted back to readable text only using exact same password.
You can't. Your password is not stored anywhere but in your brain. If you lose your password, you will lose all your notes. Storing password locally or on server is a security hole which should be avoided.
You probably have enabled "Secure Window" feature in SealNote Plus settings. Disable it to be able to take screenshots or show window content in application switcher.
This project is a fork of the original SealNote codebase, which is no longer maintained. That app is still available on Play Store, but has serious bugs, for example backup is broken on Android 8+.
SealNote Plus is currently not published on Play Store, but will be in future, after necessary improvements have been made.
Contributions are much appreciated. Please go through this section to understand how and what to contribute.
If you need ideas for contribution, please check currently open issues. If you want to propose a new feature, please open a new issue. A good feature can be something which improves some workflow or security for a user.
git clone https://github.com/hawknetwork/sealnote-plus.git && cd sealnote-plus
./gradlew assembleDebug
git checkout -b feature
git remote add <YOUR-USER> https://github.com/<YOUR-USER>/sealnote-plus.git
git push -u <YOUR-USER> HEAD
The project follows Google's Java Style Guide with following exceptions:
If you see any violation, feel free to submit a patch.
There is no strict guideline on commit messages. However, whenever possible, follow Git-book's guidelines.
We value documentation and believe in continuous improvement. All the documents can be considered living documents, unless stated otherwise. Please follow the general contribution guidelines when submitting a patch for documents.
Please raise an issue on GitHub if you find any bugs.