密钥保管库和Azure表存储检索

时间:2016-01-07 17:49:40

标签: azure azure-table-storage azure-keyvault

当从表存储中进行简单检索以寻找成功加密的数据集时,我收到以下错误: 解码OAEP填充时发生错误 我已经创建了我的密钥并通过Azure Powershell成功获得了我的密钥ID。关于此的MS教程可行,但前提是更新和检索在同一方法调用中。当他们通过单独的帖子/获取单独调用时,我得到上述错误。

我正在拔我的头发并开始怀疑它可能是Azure / Table Storage / KeyVault(加密)中的一个错误。如果有人对此有所了解,我感激不尽。

            RsaKey key = new RsaKey("mykeyid");

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

        TableOperation operation = TableOperation.Retrieve(patientId.ToUpper(), questionnaireId.ToUpper());
        var answers = answersTable.Execute(operation, retrieveOptions, null);

0 个答案:

没有答案