Reputation: 11019
I have two methods that perform encryption/decryption. These methods accept three parameters ...
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?
Upvotes: 2
Views: 500
Reputation: 3190
You could store it as a secret in the Key Vault.
Encryption/decryption is done by the Key Vault if you're using keys, not secrets.
Upvotes: 3