Abhijeet
Abhijeet

Reputation: 13906

Azure Blob Storage using Https

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

Answers (1)

SoftwareFactor
SoftwareFactor

Reputation: 8598

You can define secure HTTPS protocol in connection string:

DefaultEndpointsProtocol=https;AccountName=myAccount;AccountKey=myKey;

Upvotes: 2

Related Questions