Hello, I have a doubt , when I develop an app that run a encryption algorithm , this algorithm run first on the client computer and the send the data to server , or is executed directly on server , enabling interception of the plain text? Thanks, -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/640c3319c2b3f583f74695c4857d6071%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.
Gab dlm wrote in post #1121158:> Hello, > > I have a doubt , when I develop an app that run a encryption algorithm , > this algorithm run first on the client computer and the send the data to > server , or is executed directly on server , enabling interception of > the plain text?I''m sorry, I don''t really understand your question. All of the things you mention are possible. It depends on where the encryption is performed. Encryption can be done on the client using JavaScript or it can be done on the server using Ruby. If you are worried about someone intercepting the page content displayed by the browser then that''s the exact purpose of SSL/TLS. Everything the user would see in their browser window gets encrypted before egress onto the Internet and is only decrypted once it reaches the server. No one intercepting the traffic sent between the client browser and the web server can read anything. All they will capture will be pseudo-random noise. Give us specifics about what you are tying to do and we can tell you the best solution for that scenario. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/30e0ada90fdf2825fea9bd19bf8f3976%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.