In my research I have found mixed messages on this subject so I'm looking for expertise to explain the best approach to encrypting variable amounts of data.
Requirements:
[Edit: Adding additional requirement #3 in response to comment]
I would like to use RSA for the public/private key encryption scheme so I can distribute the public key to an application that should encrypt data but should not know how to decrypt it
I need to support data lengths from 16 characters (credit card number) to kilobytes (serialized objects) and beyond. Most of the data I encrypt will be small (credit cards, addresses, etc).
This is for encrypting data at rest.
Options I'm Aware Of:
RSA-ONLY: Use
RSACryptoServiceProviderto encrypt all data using public key. Iterate through the data in blocks that are less than the key size minus padding.HYBRID: Use
AesCryptoServiceProviderto encrypt the data, calling.GenerateKey()and.GenerateIV()to generate a random key and IV. Then use RSACryptoServiceProvider to encrypt the above key and IV and prepend or append that to the data.
It seems to my the Hybrid approach gives me the best of both worlds. Strong block cipher (AES) and distributed public key (RSA).
What are the pros and cons of these approaches? What is the standard? Surprisingly I have not found much opinion or information on the subject and would appreciate any references you might have.
Bonus: I am rolling my own for various reasons including corporate licensing restrictions but I'm curious if there is a good standard opensource approach for C#.