• <bdo id='3Dec6'></bdo><ul id='3Dec6'></ul>
      <legend id='3Dec6'><style id='3Dec6'><dir id='3Dec6'><q id='3Dec6'></q></dir></style></legend>
      <tfoot id='3Dec6'></tfoot>

        <small id='3Dec6'></small><noframes id='3Dec6'>

        <i id='3Dec6'><tr id='3Dec6'><dt id='3Dec6'><q id='3Dec6'><span id='3Dec6'><b id='3Dec6'><form id='3Dec6'><ins id='3Dec6'></ins><ul id='3Dec6'></ul><sub id='3Dec6'></sub></form><legend id='3Dec6'></legend><bdo id='3Dec6'><pre id='3Dec6'><center id='3Dec6'></center></pre></bdo></b><th id='3Dec6'></th></span></q></dt></tr></i><div id='3Dec6'><tfoot id='3Dec6'></tfoot><dl id='3Dec6'><fieldset id='3Dec6'></fieldset></dl></div>

        导入 RSA CngKey 并存储在 MicrosoftSoftwareKeyStoragePro

        时间:2023-06-02

        <small id='7COKO'></small><noframes id='7COKO'>

        <i id='7COKO'><tr id='7COKO'><dt id='7COKO'><q id='7COKO'><span id='7COKO'><b id='7COKO'><form id='7COKO'><ins id='7COKO'></ins><ul id='7COKO'></ul><sub id='7COKO'></sub></form><legend id='7COKO'></legend><bdo id='7COKO'><pre id='7COKO'><center id='7COKO'></center></pre></bdo></b><th id='7COKO'></th></span></q></dt></tr></i><div id='7COKO'><tfoot id='7COKO'></tfoot><dl id='7COKO'><fieldset id='7COKO'></fieldset></dl></div>

        <legend id='7COKO'><style id='7COKO'><dir id='7COKO'><q id='7COKO'></q></dir></style></legend>

          • <tfoot id='7COKO'></tfoot>
              <tbody id='7COKO'></tbody>

                <bdo id='7COKO'></bdo><ul id='7COKO'></ul>

                  本文介绍了导入 RSA CngKey 并存储在 MicrosoftSoftwareKeyStorageProvider 中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我有一个导出的 RSAParameters 私钥,我想将它导入另一台机器.我可以将 new 密钥保存到本地计算机或用户容器中,但我无法尝试导入 现有 密钥.

                  I have an exported RSAParameters private key that I'd like to import into another machine. I can save new keys into the local machine or user containers, but I'm stuck trying to import an existing key.

                  下面的代码将生成一个新的密钥对,我知道我可以直接在容器中生成一个新密钥 - 但我希望能够生成一个密钥并将同一个密钥导入到少数不同的计算机中.

                  The code below will generate a new key pair, and I know I could just generate a new key directly into the container - but I want to be able to generate a single key and import that same key into a handful of different computers.

                  如何获取 RSAParameters 或 XML 字符串(任一)并将其导入本地用户(或机器)容器?

                  How can I take either an RSAParameters or a string of XML (either one) and import that into a local user (or machine) container?

                      public async Task<KeyGenerationResult> GenerateNewKeyAsync(int keySize)
                      {
                          var csp = new RSACng(keySize);
                  
                          var privKey = await Task.Run(() => csp.ExportParameters(includePrivateParameters: true));
                          var pubKey = csp.ExportParameters(includePrivateParameters: false);
                  
                          var pubKeyString = exportKeyToString(pubKey);
                          var privKeyString = exportKeyToString(privKey);
                  
                          return new KeyGenerationResult
                          {
                              PrivateKey = privKey,
                              PublicKey = pubKey,
                              PrivateKeyCleartext = privKeyString,
                              PublicKeyCleartext = pubKeyString
                          };
                      }
                  
                      private static string exportKeyToString(RSAParameters key)
                      {
                          string keyString;
                          var sw = new StringWriter();
                          var xs = new XmlSerializer(typeof(RSAParameters));
                          xs.Serialize(sw, key);
                          keyString = sw.ToString();
                          return keyString;
                      }
                  
                      public void SavePrivateKeyToLocalMachine(RSAParameters privateKey, string keyName)
                      {
                         //Stuck here. :(
                      }
                  

                  CngKey.Import() 需要一个字节[],这看起来很有希望,但我无法找到任何方法来创建 CngKey.Import() 所需的字节[].

                  CngKey.Import() takes a byte[] and that looks promising, but I haven't been able to find any method to create the byte[] that CngKey.Import() requires.

                          var d = new RSACryptoServiceProvider();
                          d.ImportParameters(privateKey);
                          var keyBlob = d.ExportCspBlob(true);
                          var key = CngKey.Import(keyBlob, CngKeyBlobFormat.Pkcs8PrivateBlob);
                  

                  这给了我一个字节[],但无论我使用什么 CngKeyBlobFormat,我都会遇到异常.我被卡住了.

                  That gets me a byte[] but regardless of what CngKeyBlobFormat I use, I get an exception. I'm stuck.

                  更新

                  我找到了一种使用

                   var cp = new CngKeyCreationParameters();
                   cp.KeyUsage = CngKeyUsages.AllUsages;
                   cp.ExportPolicy = CngExportPolicies.AllowPlaintextExport | CngExportPolicies.AllowExport | CngExportPolicies.AllowArchiving | CngExportPolicies.AllowPlaintextArchiving;
                   cp.Parameters.Add(new CngProperty("Length", BitConverter.GetBytes(keySize), CngPropertyOptions.None));
                   var key = CngKey.Create(CngAlgorithm.Rsa, null, cp);
                   var bytes = key.Export(CngKeyBlobFormat.{I have tried them all});
                  

                  这段代码看起来像它应该让我导入字节[]

                  And this code looks like it should let me import the byte[]

                   /* try to save this key to the local user container */
                   var keyParameters = new CngKeyCreationParameters()
                   {
                       KeyCreationOptions = CngKeyCreationOptions.OverwriteExistingKey,
                       Provider = CngProvider.MicrosoftSoftwareKeyStorageProvider,
                       KeyUsage = CngKeyUsages.AllUsages,
                       ExportPolicy = CngExportPolicies.AllowPlaintextExport
                   };
                   keyParameters.KeyCreationOptions = CngKeyCreationOptions.None;
                   keyParameters.Parameters.Add(new CngProperty("Length", BitConverter.GetBytes(keySize), CngPropertyOptions.None));
                   keyParameters.Parameters.Add(new CngProperty(blobType.Format, bytes, CngPropertyOptions.None));
                  
                   var newKey = CngKey.Create(CngAlgorithm.Rsa, "MyTestName", keyParameters);
                  

                  ...但再一次,没有骰子.我尝试什么 CngKeyBlobFormat 都没关系,它们都给了我例外,我无法将密钥导入本地密钥存储提供程序.

                  ...but once again, no dice. It doesn't matter what CngKeyBlobFormat I try, they all give me exceptions and I'm unable to import the key into a local key storage provider.

                  我需要什么神奇的设置和参数组合才能完成这项工作?

                  What magic mix of settings and parameters do I need to make this work?

                  推荐答案

                  好吧,我终于搞定了.这是最终稳定下来的代码.

                  Well, I finally got it working. Here's the code as it finally settled down.

                  public class KeyGenerationResult
                  {
                      public RSAParameters PublicKey { get; set; }
                      public string PublicKeyCleartext { get; set; }
                      public string PrivateKeyCleartext { get; set; }
                      public byte[] PrivateBytes { get; set; }
                      public int KeySize { get; set; }
                      public CngKeyBlobFormat BlobFormat { get; set; }
                  }
                  
                      public async Task<KeyGenerationResult> GenerateNewKeyAsync(int keySize)
                      {
                          var cp = new CngKeyCreationParameters();
                          cp.KeyUsage = CngKeyUsages.AllUsages;
                          cp.ExportPolicy = CngExportPolicies.AllowPlaintextExport | CngExportPolicies.AllowExport | CngExportPolicies.AllowArchiving | CngExportPolicies.AllowPlaintextArchiving;
                          cp.Parameters.Add(new CngProperty("Length", BitConverter.GetBytes(keySize), CngPropertyOptions.None));
                          var key = await Task.Run(() => CngKey.Create(CngAlgorithm.Rsa, null, cp)).ConfigureAwait(false);
                          var blobType = CngKeyBlobFormat.GenericPrivateBlob;
                          var bytes = await Task.Run(() => key.Export(blobType)).ConfigureAwait(false);
                  
                          var rsa = new RSACng(key);
                          var pubKey = rsa.ExportParameters(includePrivateParameters: false);
                          var pubKeyString = exportKeyToString(pubKey);
                  
                          return new KeyGenerationResult
                          {
                              PublicKey = pubKey,
                              PrivateKeyCleartext = Convert.ToBase64String(bytes),
                              PublicKeyCleartext = pubKeyString,
                              PrivateBytes = bytes,
                              BlobFormat = blobType,
                              KeySize = keySize
                          };
                      }
                  
                      private static string exportKeyToString(RSAParameters key)
                      {
                          string keyString;
                          var sw = new StringWriter();
                          var xs = new XmlSerializer(typeof(RSAParameters));
                          xs.Serialize(sw, key);
                          keyString = sw.ToString();
                          return keyString;
                      }
                  
                      public void SavePrivateKeyToLocalMachine(KeyGenerationResult keyData, string keyName)
                      {
                          var myKSP = CngProvider.MicrosoftSoftwareKeyStorageProvider;
                          const bool MachineKey = false;
                  
                          if (!CngKey.Exists(keyName, myKSP))
                          {
                              var keyParams = new CngKeyCreationParameters
                              {
                                  ExportPolicy = CngExportPolicies.AllowPlaintextExport,
                                  KeyCreationOptions = (MachineKey) ? CngKeyCreationOptions.MachineKey : CngKeyCreationOptions.None,
                                  Provider = myKSP
                              };
                              keyParams.Parameters.Add(new CngProperty("Length", BitConverter.GetBytes(keyData.KeySize), CngPropertyOptions.None));
                              keyParams.Parameters.Add(new CngProperty(keyData.BlobFormat.Format, keyData.PrivateBytes, CngPropertyOptions.None));
                  
                              CngKey.Create(CngAlgorithm.Rsa, keyName, keyParams);
                          }
                          else
                          {
                              throw new CryptographicException($"The key with the name '{keyName}' already exists!");
                          }
                      }
                  

                  这篇关于导入 RSA CngKey 并存储在 MicrosoftSoftwareKeyStorageProvider 中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:使用 C# 和 CryptoJS 的不同加密结果 下一篇:指定的填充模式对此算法无效 - c# - System.Securit

                  相关文章

                  最新文章

                    <bdo id='Dobt8'></bdo><ul id='Dobt8'></ul>
                • <i id='Dobt8'><tr id='Dobt8'><dt id='Dobt8'><q id='Dobt8'><span id='Dobt8'><b id='Dobt8'><form id='Dobt8'><ins id='Dobt8'></ins><ul id='Dobt8'></ul><sub id='Dobt8'></sub></form><legend id='Dobt8'></legend><bdo id='Dobt8'><pre id='Dobt8'><center id='Dobt8'></center></pre></bdo></b><th id='Dobt8'></th></span></q></dt></tr></i><div id='Dobt8'><tfoot id='Dobt8'></tfoot><dl id='Dobt8'><fieldset id='Dobt8'></fieldset></dl></div>

                  <small id='Dobt8'></small><noframes id='Dobt8'>

                • <tfoot id='Dobt8'></tfoot>

                    1. <legend id='Dobt8'><style id='Dobt8'><dir id='Dobt8'><q id='Dobt8'></q></dir></style></legend>