How To Use Azure Key Vault In Android
I'm using Azure as cloud storage, i'm able to upload and download the images/files in Azure blob container using following link. Azure Blob storage Now to provide security we are p
Solution 1:
keys are stored in key vault i want access them and use them to access blob storage
Don't use Azure Keyvault when you're building a mobile app. At least not directly.
You see, we want to keep all app secrets off the device if possible. Even if they're never being stored and will only be in memory transiently.
To solve this particular conumdrum, we're still going to take advantage of Keyvault and all it has to offer and put the Azure Storage API key in there.
But instead of having the mobile app directly access the Table storage, we're going to have an Azure Function
do that.
For more details, you could refer to this article.
Post a Comment for "How To Use Azure Key Vault In Android"