Hi

I need storage resource URL Encrypted when a file download
hide or encrypted storage resource URL in c#
Thanks and regards
Hi

I need storage resource URL Encrypted when a file download
hide or encrypted storage resource URL in c#
Thanks and regards
You can configure your storage account to accept requests from secure connections only by setting the Secure transfer required property for the storage account. When secure transfer is required, a call to an Azure Storage REST API operation must be made over HTTPS. Any request made over HTTP is rejected. By default, the Secure transfer required property is enabled when you create a storage account.
Azure offers many mechanisms for keeping data private as it moves from one location to another. Refer to this article Encryption of data in transit
Azure Storage uses server-side encryption (SSE) to automatically encrypt your data when it is persisted to the cloud. Azure Storage encryption protects your data and to help you to meet your organizational security and compliance commitments.
Learn more on(Azure Storage encryption, About encryption key management, Doubly encrypt data with infrastructure encryption) Azure Storage encryption for data at rest
Additional information: Azure Storage When you interact with Azure Storage through the Azure portal, all transactions take place over HTTPS. You can also use the Storage REST API over HTTPS to interact with Azure Storage. You can enforce the use of HTTPS when you call the REST APIs to access objects in storage accounts by enabling the secure transfer that's required for the storage account.
Shared Access Signatures (SAS), which can be used to delegate access to Azure Storage objects, include an option to specify that only the HTTPS protocol can be used when you use Shared Access Signatures. This approach ensures that anybody who sends links with SAS tokens uses the proper protocol.
SMB 3.0, which used to access Azure Files shares, supports encryption, and it's available in Windows Server 2012 R2, Windows 8, Windows 8.1, and Windows 10. It allows cross-region access and even access on the desktop.
Client-side encryption encrypts the data before it’s sent to your Azure Storage instance, so that it’s encrypted as it travels across the network.
Hope this helps! Let us know if you still have questions or need further assitance.
Please don’t forget to "Accept the answer" and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.
6 people are following this question.