Reputation: 13906
I am looking out encrypt data in-transit when uploading files to Azure Storage.
How can I use StorageClient
to make https call to Blob Storage?
Upvotes: 1
Views: 181
Reputation: 8598
You can define secure HTTPS protocol in connection string:
DefaultEndpointsProtocol=https;AccountName=myAccount;AccountKey=myKey;
Upvotes: 2