azure-encryption-extensions
azure-encryption-extensions copied to clipboard
Simplifies encryption for Azure Blob Storage
Hi there, we are using this extension in our project and it's really nice, but want to check if there is any plan to migrate this solution to .net core,...
I am using the DownloadToStreamEncrypted extension and it works fine for small files. I've noticed that it loads the entire stream into memory however. I am using ASP.Net WebAPI. Here...
Hi, when change the Samples.cs from `blob.UploadFromFileEncrypted(provider, path, FileMode.Open);` to `blob.UploadFromFileEncryptedAsync(provider, path, FileMode.Open).GetAwaiter().GetResult();` and run the program i get this error: "Stream does not support reading." Is there some issue...
We have encrypting file and storing in the Azure blob using AesCryptoServiceProvider, no issues in storing the file in the Azure blob. When we try to decrypt and download the...
Using the memory stream download, the file stop downloading at 90% Using the file download version, the file is downloaded correctly. Any suggestion?
What about storing the key into a stream? on the SymmetricBlobCryptoProvider class I have added the following code ``` public void WriteKeyStream(System.IO.Stream stream) { System.IO.StreamWriter writer = new System.IO.StreamWriter(stream); writer.Write(ToKeyFileString());...