10
End-To-End Encrypted (EE2E) Websites?
(lemmy.world)
Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development
Web development is the process of creating websites or web applications
Some webdev blogs
Not sure what to post in here? Want some web development related things to read?
Heres a couple blogs that have web development related content
I mean, the server would need to have the private keys in order to encrypt the data right
The idea is that the keys are client-side. You send them to the server encrypted, and it serves it back to other clients who have the password entirely client-side as well, and decrypts it.
It's basically what encrypted chat apps do: all they have is metadata but the payload is completely opaque to the server. It could just be a file of
/dev/urandom
for what it knows.