I have two methods that perform encryption/decryption. These methods accept three parameters ...
- Plain Text (for encryption) or Cipher Text (for decryption)
- Initialization Vector
- Encryption Passphrase
I was planning on using Azure Key Vault to store the Encryption Passphrase but as I read through the documentation it appears as though Azure insists on performing the encryption/decryption itself.
Is there a way to just read the Encryption Passphrase from the Azure Key Vault and use it within my own encryption methods?