You are not logged in.
Pages: 1
Yeah so for anyone who stumbles in here thinking there may be something shiny, you don't know me so let me explain: I make dirt-simple boring featureless apps.
And that's what this is, so basic it hurts, no autofill or anything like that, basically just a sort of text-editor with encryption. You have to manually enter all your info, and to use it you'll need to copy/paste the info into whatever browser you're using. I may add a couple more things later, but i'm done for today and it actually works!


Last edited by greenjeans (2026-02-19 23:39:40)
https://sourceforge.net/projects/vuu-do/ New Vuu-do isos uploaded December 2025!
Vuu-do GNU/Linux, minimal Devuan-based Openbox and Mate systems to build on. Also a max version for OB.
Devuan 5 mate-mini iso, pure Devuan, 100% no-vuu-do.
Devuan 6 version also available for testing.
Please donate to support Devuan and init freedom! https://devuan.org/os/donate
Offline
using pass as the "backend" or rolled out your own?
Offline
using pass as the "backend" or rolled out your own?
Libsodium. Simple text DB, no sqlite or json deps. .
https://sourceforge.net/projects/vuu-do/ New Vuu-do isos uploaded December 2025!
Vuu-do GNU/Linux, minimal Devuan-based Openbox and Mate systems to build on. Also a max version for OB.
Devuan 5 mate-mini iso, pure Devuan, 100% no-vuu-do.
Devuan 6 version also available for testing.
Please donate to support Devuan and init freedom! https://devuan.org/os/donate
Offline
ah, i was kinda expecting ya to build a gui wrapper for pass(1), since that was one of the suggestion for building a complete replacement to stuff like keepassxc in the thread where keepassxc was discussed, there were more suggestion in that thread tho.
Offline
ah, i was kinda expecting ya to build a gui wrapper for pass(1)
A reasonable assumption, my MO is exactly that kind of thing. But in doing research for this, it seemed like libsodium was the "gold standard" for this sort of thing, and their docs are actually not bad, relevant portion:
https://doc.libsodium.org/doc/quickstart
"One-shot encryption where everything fits in memory
Create a secret key using crypto_secretbox_keygen().
Create a nonce using randombytes_buf(nonce, sizeof nonce).
Use crypto_secretbox_easy() to encrypt the message and send/store the resulting ciphertext along with the nonce. Unlike the key, the nonce doesn't have to be secret.
Use crypto_secretbox_open_easy() to decrypt the ciphertext using the same key and nonce."
So I thought hell I can muddle through that, and it would be a real step above base64, lol.
https://sourceforge.net/projects/vuu-do/ New Vuu-do isos uploaded December 2025!
Vuu-do GNU/Linux, minimal Devuan-based Openbox and Mate systems to build on. Also a max version for OB.
Devuan 5 mate-mini iso, pure Devuan, 100% no-vuu-do.
Devuan 6 version also available for testing.
Please donate to support Devuan and init freedom! https://devuan.org/os/donate
Offline
Almost there, did some good work in the last few days:
EDIT: Even better, done a lot of nice work in the last few days, getting close.

Last edited by greenjeans (Today 00:51:24)
https://sourceforge.net/projects/vuu-do/ New Vuu-do isos uploaded December 2025!
Vuu-do GNU/Linux, minimal Devuan-based Openbox and Mate systems to build on. Also a max version for OB.
Devuan 5 mate-mini iso, pure Devuan, 100% no-vuu-do.
Devuan 6 version also available for testing.
Please donate to support Devuan and init freedom! https://devuan.org/os/donate
Offline
The VuuPass basic password manager is now up on my Sourceforge, I decided to just make a compressed file and put it there for easy access rather than posting a lot of code to forums or replying to the e-mails i've gotten about it, I have not made a .deb package yet, this is just for preliminary testing and includes the binaries and source for both the standard and portable versions, and a readme.txt (also displayed on the download page) with instructions for use and also for compiling your own custom version.
Note that I included a .desktop for the standard version in case you want to do a full manual install, but there's not one for the portable version, it doesn't need one, just drop the binary on a USB stick and click it to run, it will do the rest.
It probably goes without saying but you need gtk3 and libsodium onboard to run it.
https://sourceforge.net/projects/vuu-do … s/VuuPass/
Remember, this is first test of experimental software, test only with dummy data for now until more test results come in.
Last edited by greenjeans (Today 19:39:42)
https://sourceforge.net/projects/vuu-do/ New Vuu-do isos uploaded December 2025!
Vuu-do GNU/Linux, minimal Devuan-based Openbox and Mate systems to build on. Also a max version for OB.
Devuan 5 mate-mini iso, pure Devuan, 100% no-vuu-do.
Devuan 6 version also available for testing.
Please donate to support Devuan and init freedom! https://devuan.org/os/donate
Offline
Pages: 1