I have a ASP.net C# Cloud application and I need to encrypt my SQL Azure Tables. I have researched about this and I found out that SQL Azure doesn't support encryption and that you have to do it in the application layer.
Now I have no problem encrypting my stored procedure parameters and decrypting them again when i read out, however this means I cannot perform a proper search on my cells anymore.
I have no idea how to deal with this except reading the whole thing in memory and filtering it there, but that just feels dirty and I don't wanna lose performance once I start reading a lot of cells.
Do you guys have any idea how to cope with this??
Thanks a lot