Some reference material for SSL using Node.js: http://nodejs.org/api/https.html
I need to build a proof of concept secure SSL connection between a Node.js server and a browser.
The client needs to encrypt the data it sends and then the server needs to store that data in the database encrypted.
I guess this means I need client side JS to encrypt the data? How would I go about doing this if so (client OR server)? Thanks!