this post was submitted on 27 Apr 2025
23 points (62.6% liked)
Open Source
36411 readers
158 users here now
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
- Open Source Initiative
- Free Software Foundation
- Electronic Frontier Foundation
- Software Freedom Conservancy
- It's FOSS
- Android FOSS Apps Megathread
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
- !libre_culture@lemmy.ml
- !libre_software@lemmy.ml
- !libre_hardware@lemmy.ml
- !linux@lemmy.ml
- !technology@lemmy.ml
Community icon from opensource.org, but we are not affiliated with them.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I didn't have time to reply earlier, but I was thinking the same thing, except with the extra step of replacing the username with a unique user identifier randomly generated at signup by the user's instance and kept secret.
I wonder if there's a way to prevent people from even knowing that two different votes came from the same user.
What I outlined above should prevent anyone from knowing two different votes came from the same user... without specifically trying that user's id on each. That's what the salt (the comment/post id) is for.
I was thinking of a variable-length hash, but if we use a fixed length (which I acknowledge the term "salt" does imply), then I agree.