I am not able to find any class or library to Encrypt/Decrypt Azure CloudFile using C#. I am searching for something which is available for Azure CloudFile.
Following link explain about Blob,but I need similar for CloudFiles.
I need something like below, but for ColudFile.
BlobEncryptionPolicy policy
= new BlobEncryptionPolicy(rsa, null);
BlobRequestOptions options
= new BlobRequestOptions() { EncryptionPolicy = policy };
Any help guys.
It is not possible to encrypt/decrypt data in AzureStorage.file . As only Blob, Queue and Table support encryption policy .
Reference: Client-Side Encryption with .NET for Microsoft Azure Storage | Microsoft Docs
Reference for cloud file library: Microsoft.Azure.Storage.File Namespace - Azure for .NET Developers | Microsoft Docs