2

How should I start off with end to end encrypted applications for the web.
Anybody has any known examples or starter repos I could start off with :)
Preferably nodejs

Comments
  • 1
    What's the exact functionality you're looking to build?
  • 0
    @linuxxx we'll I just wanted to get acquainted with it.
    Like I wanted to make a todo list like everybody does, with end to end encryption and bash-like interface !
    Well, sounds really stupid, but I kinda want to to learn to synchronize all these things at once
  • 1
    Nah not stupid at all. Would you like stuffs to be shared or not?
  • 0
  • 1
    @lokiiarora As in, will any content be shared between users?
  • 0
    @linuxxx i don't plan on doing so now.
    But maybe in the future, cos I'm really not sure how data will be in sync with other users having different sets of public and private key combos
  • 1
    @lokiiarora That's exactly what I was thinking about :P
  • 0
    @linuxxx I'm just worried as to how I will serve the private and public key pair to the client :3
    Using templating or any fancy ajax request at the start of the render :3
  • 0
    @linuxxx how do other companies go about end to end encryption on the web.
    Any ideas?
  • 1
    @lokiiarora Generate a key pair with a password. Generate a password/key for encryption, encrypt something using symmetric encryption with that password/key and encrypt the password/key with the public key :)
Add Comment