Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a Ruby on Rails web app. The user can upload files and they get stored to Amazons S3. For file uploads I use the paperclip gem.

How can I encrypt files with AES256 before they get saved? I know S3 has server side encryption, but that doesn't really work for me because I'm opening the site in the mobile app and would like to handle decryption on the client.

I know I can use the paperclip processors or the before_post_process methods but how can I get the file that is being uploaded and change it?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.