4

Azure プロジェクトで暗号化を使用していますが、RsaKey に問題があります。ユーザーがアプリケーションにサインアップすると、RsaKey が作成され、ユーザーに関連付けられます。これはコードです:

   string storageConnectionString = CloudConfigurationManager.GetSetting("StorageConnectionString");
                    CloudStorageAccount storageAccount;
                    try
                    {
                        storageAccount = CloudStorageAccount.Parse(storageConnectionString);
                    }
                    catch (FormatException)
                    {
                        Console.WriteLine("Invalid storage account information provided. Please confirm the AccountName and AccountKey are valid in the app.config file - then restart the sample.");
                        Console.WriteLine("Press any key to exit");
                        Console.ReadLine();
                        throw;
                    }
                    catch (ArgumentException)
                    {
                        Console.WriteLine("Invalid storage account information provided. Please confirm the AccountName and AccountKey are valid in the app.config file - then restart the sample.");
                        Console.WriteLine("Press any key to exit");
                        Console.ReadLine();
                        throw;
                    }
                    CloudTableClient client = storageAccount.CreateCloudTableClient();
                    CloudTable table = client.GetTableReference(tableName);
                    RsaKey key = new RsaKey(item.PartitionKey);
                    TableRequestOptions insertOptions = new TableRequestOptions()
                    {
                        EncryptionPolicy = new TableEncryptionPolicy(key, null)
                    };
                    table.Execute(TableOperation.Insert(item), insertOptions, null);

この後、RsaKey を永続化する必要があり、ユーザー コンテナー内の専用 BLOB に格納します。RsaKey は Serializable ではないため、Json 文字列でちょっとした「トリック」を使用します。ここにコード:

 string jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(key);

                    using (var stream = new MemoryStream(Encoding.Default.GetBytes(jsonString), false))
                    {             
                        blob.UploadFileToBlob(item.PartitionKey, "key", stream); // this method creates a blob called "key" in the container named [item.PartitionKey] and stores the stream   
                    }

登録後、もちろん、RsaKey を使用していくつかの操作を実行する必要があります。たとえば、いくつかの非表示フィールドへのアクセス、他の BLOB 内のいくつかの特別なファイルへのアクセスなどです。この場合に行うことは、次のコードに示されています。

 User user = GetUser();

            Resolver res = new Resolver();
            res.Add(user.PartitionKey);

            TableRequestOptions retrieveOptions = new TableRequestOptions()
            {
                EncryptionPolicy = new TableEncryptionPolicy(null, res)
            };

            // Retrieve Entity
            string storageConnectionString = CloudConfigurationManager.GetSetting("StorageConnectionString");
            CloudStorageAccount storageAccount;
            try
            {
                storageAccount = CloudStorageAccount.Parse(storageConnectionString);
            }
            catch (FormatException)
            {
                Console.WriteLine("Invalid storage account information provided. Please confirm the AccountName and AccountKey are valid in the app.config file - then restart the sample.");
                Console.WriteLine("Press any key to exit");
                Console.ReadLine();
                throw;
            }
            catch (ArgumentException)
            {
                Console.WriteLine("Invalid storage account information provided. Please confirm the AccountName and AccountKey are valid in the app.config file - then restart the sample.");
                Console.WriteLine("Press any key to exit");
                Console.ReadLine();
                throw;
            }
            CloudTableClient client = storageAccount.CreateCloudTableClient();
            CloudTable table = client.GetTableReference("user");
            TableOperation operation = TableOperation.Retrieve(user.PartitionKey, user.RowKey);
            TableResult result;
            try
            {
                 result = table.Execute(operation, retrieveOptions, null);
            }
            catch (Exception e) { }

Resolver は IKeyResolver を実装するクラスであり、ResolveKeyAsync取得操作を実行するメソッドを定義する必要があります。このクラスのコードは次のとおりです。

public class Resolver: IKeyResolver
    {
        TableUtility table;
        BlobUtility blob;
        string container;

        public Resolver()
        {
            table = new TableUtility();
            blob = new BlobUtility();
        }

        public void Add(string container){
            this.container= container;
        }


        public async Task<IKey> ResolveKeyAsync(string kid, CancellationToken token)
        {
            IKey result;
            string jsonString = blob.BlobToText(container, "key"); // this method goes to the blob "key" in the container named [container] and download the content of the blob using a MemoryStream
            var javaScriptSerializer = new System.Web.Script.Serialization.JavaScriptSerializer();
            result = Newtonsoft.Json.JsonConvert.DeserializeObject<RsaKey>(jsonString);
            return await Task.FromResult(result);
        }

    }

実際、私の問題は、逆シリアル化された RsaKey が以前のものと同じではないことです。プロパティが正しく設定されているにもかかわらずjsonString、の「Kid」フィールドresultが異なります。おそらく、デシリアライゼーション操作での暗黙的なインスタンス化の原因です (そして、おそらく新しい Kid が作成されます)。したがって、保存したのと同じ Kid を使用して新しい RsaKey を作成しようとしましたRsaKey key = new RsaKey(partitionKey)が ( )、取得操作は失敗しました (TableResult result残っていますnull)。何を指示してるんですか?たぶん、永続化メカニズムを変更する必要がありますか?

編集

table.Execute(operation, retrieveOptions, null);try/catch ブロック (でインスタンス化された RsaKey を使用) で実行しようとすると、次RsaKey key = new RsaKey(partitionKey)の例外がスローされます。

Microsoft.WindowsAzure.Storage.StorageException was caught
  _HResult=-2146233088
  _message=Decryption logic threw error. Please check the inner exception for more details.
  HResult=-2146233088
  IsTransient=false
  Message=Decryption logic threw error. Please check the inner exception for more details.
  Source=Microsoft.WindowsAzure.Storage
  IsRetryable=false
  StackTrace:
       in Microsoft.WindowsAzure.Storage.Core.Executor.Executor.ExecuteSync[T](RESTCommand`1 cmd, IRetryPolicy policy, OperationContext operationContext) in c:\Program Files (x86)\Jenkins\workspace\release_dotnet_master\Lib\ClassLibraryCommon\Core\Executor\Executor.cs:line 820
       in Microsoft.WindowsAzure.Storage.Table.TableOperation.Execute(CloudTableClient client, CloudTable table, TableRequestOptions requestOptions, OperationContext operationContext) in c:\Program Files (x86)\Jenkins\workspace\release_dotnet_master\Lib\ClassLibraryCommon\Table\TableOperation.cs:line 41
       in Microsoft.WindowsAzure.Storage.Table.CloudTable.Execute(TableOperation operation, TableRequestOptions requestOptions, OperationContext operationContext) in c:\Program Files (x86)\Jenkins\workspace\release_dotnet_master\Lib\ClassLibraryCommon\Table\CloudTable.cs:line 53
       in WebRole.Controllers.AccountController.IsProfileCompleted() in c:\Users\HP\Source\Repos\scalablepredictor\WebRole\Controllers\AccountController.cs:line 343
  InnerException: System.AggregateException
       _HResult=-2146233088
       _message=One or more errors occured.
       HResult=-2146233088
       IsTransient=false
       Message=One or more errors occured.
       Source=mscorlib
       StackTrace:
            in System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification)
            in Microsoft.WindowsAzure.Storage.Table.TableEncryptionPolicy.DecryptMetadataAndReturnCEK(String partitionKey, String rowKey, EntityProperty encryptionKeyProperty, EntityProperty propertyDetailsProperty, EncryptionData& encryptionData) in c:\Program Files (x86)\Jenkins\workspace\release_dotnet_master\Lib\ClassLibraryCommon\Table\TableEncryptionPolicy.cs:line 205
       InnerException: System.Security.Cryptography.CryptographicException
            _HResult=-2146233296
            _message=Error occurred while decoding OAEP padding.
            HResult=-2146233296
            IsTransient=false
            Message=Error occurred while decoding OAEP padding.
            Source=mscorlib
            StackTrace:
                 in System.Security.Cryptography.RSACryptoServiceProvider.DecryptKey(SafeKeyHandle pKeyContext, Byte[] pbEncryptedKey, Int32 cbEncryptedKey, Boolean fOAEP, ObjectHandleOnStack ohRetDecryptedKey)
                 in System.Security.Cryptography.RSACryptoServiceProvider.Decrypt(Byte[] rgb, Boolean fOAEP)
                 in Microsoft.Azure.KeyVault.Cryptography.Algorithms.RsaOaep.RsaOaepDecryptor.TransformFinalBlock(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount)
                 in Microsoft.Azure.KeyVault.RsaKey.<UnwrapKeyAsync>d__6.MoveNext()
            InnerException: 
4

0 に答える 0