I would like to know if there is a way, and how to do it if possible, to decrypt Always Encrypted columns using Column Master Key(CMK) stored in Azure Key Vault using Entity Framework.
I followed the tutorial from: Microsoft Docs.
But they are not using EF. Also they mention that CMK is being stored in Azure Key Vault.
My main goal here is to encrypt some data in Azure DB, but allow users to see that data. (Example: credit-card numbers, SSN, etc.)
I have some data in DB already and I want to preserve it.
I don`t want to have to install Windows Certificates everywhere, because this would be a web app, so that is why I decided to go with Azure Key Vault option and if I understood correctly this is a way to go without changing much of the application.
Am I on the right path here?
Is this decryption possible?
Thanks