Reputation: 1457
Is there a way to perform transparent encryption when we are moving data to azure blob and no need to have data encrypted while it is at rest?
I read about Azure key vault, but I believe that solution is for encrypting data at rest.
Upvotes: 0
Views: 126
Reputation: 71118
There is no specific encryption service. This would be up to your app.
You didn't mention which language you're using, but... the .NET and Java storage SDK's have client-side encryption built in. More info here.
Upvotes: 1