Ask HN: Best practices to encrypt user data in transit?
1–5 of 5 posts
Re: Ask HN: Best practices to encrypt user data in transit?
#2Re: Ask HN: Best practices to encrypt user data in transit?
#3http://latacora.singles/2018/04/03/cryptographic-right-answe...
and the discussion of that from last week:
https://news.ycombinator.com/item?id=16748400
The great advice there is "Let AWS AELB handle it for you".
Re: Ask HN: Best practices to encrypt user data in transit?
#4Is this for a web page or web app, native iOS/Android app, desktop app?
Is this for Client/Server or P2P?
Are you sending files that can be encrypted, or is it a real time connection link of some sort?
In general, you can use TLS/SSL (as mentioned by @bigiain), but there are other use cases where you might want to do something more specialized.
Re: Ask HN: Best practices to encrypt user data in transit?
#5I am a security newbie and I want to wise up a bit more about this. Honestly, I know I can encrypt my user's data using some sort of key that only a user will know, but how do I pick that key so it involves minimal friction for the user? Since my server knows basically everything about the user when they are authed in, does it just mean like a second clientside only password? Are there libraries that are well known f…
Right now, the best answer one can give you is "it depends".