久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<i id='2HeiY'><tr id='2HeiY'><dt id='2HeiY'><q id='2HeiY'><span id='2HeiY'><b id='2HeiY'><form id='2HeiY'><ins id='2HeiY'></ins><ul id='2HeiY'></ul><sub id='2HeiY'></sub></form><legend id='2HeiY'></legend><bdo id='2HeiY'><pre id='2HeiY'><center id='2HeiY'></center></pre></bdo></b><th id='2HeiY'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='2HeiY'><tfoot id='2HeiY'></tfoot><dl id='2HeiY'><fieldset id='2HeiY'></fieldset></dl></div>
<legend id='2HeiY'><style id='2HeiY'><dir id='2HeiY'><q id='2HeiY'></q></dir></style></legend>
      <bdo id='2HeiY'></bdo><ul id='2HeiY'></ul>

    1. <small id='2HeiY'></small><noframes id='2HeiY'>

    2. <tfoot id='2HeiY'></tfoot>
    3. 在 C# 中加載 ASN.1/DER 編碼的 RSA 密鑰對

      Load ASN.1/DER encoded RSA keypair in C#(在 C# 中加載 ASN.1/DER 編碼的 RSA 密鑰對)
    4. <small id='Sdews'></small><noframes id='Sdews'>

      <tfoot id='Sdews'></tfoot>
      <legend id='Sdews'><style id='Sdews'><dir id='Sdews'><q id='Sdews'></q></dir></style></legend>

        <tbody id='Sdews'></tbody>

        • <i id='Sdews'><tr id='Sdews'><dt id='Sdews'><q id='Sdews'><span id='Sdews'><b id='Sdews'><form id='Sdews'><ins id='Sdews'></ins><ul id='Sdews'></ul><sub id='Sdews'></sub></form><legend id='Sdews'></legend><bdo id='Sdews'><pre id='Sdews'><center id='Sdews'></center></pre></bdo></b><th id='Sdews'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='Sdews'><tfoot id='Sdews'></tfoot><dl id='Sdews'><fieldset id='Sdews'></fieldset></dl></div>
              <bdo id='Sdews'></bdo><ul id='Sdews'></ul>
              • 本文介紹了在 C# 中加載 ASN.1/DER 編碼的 RSA 密鑰對的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                限時送ChatGPT賬號..

                我在 Crypto++ 中創建了 DER 編碼的 RSA 密鑰對以及密碼.它們是 Base64Encoded 字符串.我首先將數據從 Base64 解碼為字節數組,但我不確定如何將它們加載到 RSACryptoServiceProvider.

                I have DER encoded RSA keypair created in Crypto++, as well as cipher. They are Base64Encoded string. I first decode the data from Base64 to byte array, but I am not sure how to load them into RSACryptoServiceProvider.

                static void Main()
                {
                    string pbkeystr = "mypublickey";
                    string pvkeystr = "myprivatekey";
                    string cipherstr = "mycipher";
                
                    byte[] pbkey = Convert.FromBase64String(pbkeystr);
                    byte[] pvkey = Convert.FromBase64String(pvkeystr);
                    byte[] cipher = Convert.FromBase64String(cipherstr);
                
                    RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
                
                    //Set keys here..
                
                    //Decrypt the cipher using private key
                    rsa.Decrypt(pvkey, false);
                }
                

                沒有設置鍵的功能.我唯一找到的是 ImportParameters 方法,它采用 RSAParameters 類,該類由 pqn、模數、指數等.我無權訪問這些.

                There are no functions to set keys. The only thing I found was ImportParameters method, which takes RSAParameters class which consists of p, q, n, modulus, exponent etc. I don't have access to these.

                有什么方法可以將鍵加載為字符串?如何將密鑰加載到 RSACryptoServiceProvider?

                Is there any way I can load the keys as string? How can I load the key into RSACryptoServiceProvider?

                推薦答案

                有什么方法可以將鍵加載為字符串?如何將密鑰加載到 RSACryptoServiceProvider 中?

                Is there any way I can load the keys as string? How can I load the key into RSACryptoServiceProvider?

                從您的其他 Crypto++ 問題,如何在 Crypto++ 中加載 Base64 RSA 密鑰,您似乎有 公鑰和私鑰,因為您使用了 DEREncodeBERDecode.也就是說,您有 RSA 參數,而不是主題公鑰信息和私鑰信息.您的密鑰缺少 OID 標識符和版本號.那樣就好了.

                From your other Crypto++ question, How to load Base64 RSA keys in Crypto++, it looks like you have only the public and private keys because you used DEREncode and BERDecode. That is, you have the RSA parameters, and not the subject public key info and the private key info. Your keys lack the OID identifiers and version numbers. Things are fine that way.

                從代碼項目上的 加密互操作性:密鑰,您在 Base64 解碼后將需要一個解析 ASN.1/DER 的 C# 類.CodeProject 文章提供了一個名為 AsnKeyParser 的 C# 類來讀取 ASN.1/DER 并返回一個 RSAParameters 以加載到 CSP 中.

                From Cryptographic Interoperability: Keys on the Code Project, you will need a C# class that parses the ASN.1/DER after you Base64 decode it. The CodeProject article provides a C# class called AsnKeyParser to read the ASN.1/DER and returns a RSAParameters to load into a CSP.

                AsnKeyParser 類的代碼大約有 800 行,另外還有 5 個支持文件來完成這一切,所以放在這里不太合適.你應該自己下載.感興趣的文件稱為 CSInteropKeys.zip.

                The code for the AsnKeyParser class is about 800 lines, and there are five other supporting files to make it all happen, so its not really appropriate to place it here. You should download it yourself. The file of interest is called CSInteropKeys.zip.

                一旦您連接到 AsnKeyParser 類,就如同下面的 RSA 公鑰一樣簡單.私鑰類似,代碼在 CodeProject 網站上給出.

                Once you wire-in the AsnKeyParser class, it will be as simple as the following for a RSA Public key. The private key will be similar, and the code is given on the CodeProject site.

                // Your ASN.1/DER parser class
                AsnKeyParser keyParser = new AsnKeyParser("rsa-public.der");
                RSAParameters publicKey = keyParser.ParseRSAPublicKey();
                
                // .Net class
                CspParameters csp = new CspParameters;
                csp.KeyContainerName = "RSA Test (OK to Delete)";    
                csp.ProviderType = PROV_RSA_FULL;    // 1
                csp.KeyNumber = AT_KEYEXCHANGE;      // 1
                
                // .Net class
                RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(csp);
                rsa.PersistKeyInCsp = false;
                rsa.ImportParameters(publicKey);
                

                不贊成鏈接到另一個站點上的文件,但我不知道如何提供其他信息.答案中涉及的源代碼太多.

                Linking to files on another site is frowned upon, but I don't know how to provide the information otherwise. There's too much source code involved to place in an answer.

                為了完整性,.Net 使互操作變得容易.他們不接受 ASN.1/DER 或 PEM.相反,.Net 接受一些 XML 表示的鍵.我相信您可以在 RFC 3275, XML-Signature Syntax and Processing 中找到它.Microsoft 沒有為您聲明.我在寫代碼項目文章時將其拼湊起來.

                For completeness, .Net does not make interop easy. They do not accept ASN.1/DER or PEM. Rather, .Net accepts some XML representation of the keys. I believe you can find it in RFC 3275, XML-Signature Syntax and Processing. Microsoft does not state that for you. I kind of pieced it together when I wrote the Code Project article.

                除了 ASN.1/DER 和 PEM 之外,也許我們應該在 Crypto++ 中添加一個類來反芻 XML.

                Maybe we should add a class to Crypto++ to regurgitate XML in addition to ASN.1/DER and PEM.

                這篇關于在 C# 中加載 ASN.1/DER 編碼的 RSA 密鑰對的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                相關文檔推薦

                What are good algorithms for vehicle license plate detection?(車牌檢測有哪些好的算法?)
                onClick event for Image in Unity(Unity中圖像的onClick事件)
                Running Total C#(運行總 C#)
                Deleting a directory when clicked on a hyperlink with JAvascript.ASP.NET C#(單擊帶有 JAvascript.ASP.NET C# 的超鏈接時刪除目錄)
                asp.net listview highlight row on click(asp.net listview 在單擊時突出顯示行)
                Calling A Button OnClick from a function(從函數調用按鈕 OnClick)

                    <bdo id='qT9Hw'></bdo><ul id='qT9Hw'></ul>
                    <i id='qT9Hw'><tr id='qT9Hw'><dt id='qT9Hw'><q id='qT9Hw'><span id='qT9Hw'><b id='qT9Hw'><form id='qT9Hw'><ins id='qT9Hw'></ins><ul id='qT9Hw'></ul><sub id='qT9Hw'></sub></form><legend id='qT9Hw'></legend><bdo id='qT9Hw'><pre id='qT9Hw'><center id='qT9Hw'></center></pre></bdo></b><th id='qT9Hw'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='qT9Hw'><tfoot id='qT9Hw'></tfoot><dl id='qT9Hw'><fieldset id='qT9Hw'></fieldset></dl></div>
                    <legend id='qT9Hw'><style id='qT9Hw'><dir id='qT9Hw'><q id='qT9Hw'></q></dir></style></legend>

                        <tbody id='qT9Hw'></tbody>

                      1. <tfoot id='qT9Hw'></tfoot>

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

                          主站蜘蛛池模板: 国产一区在线免费 | 欧美激情亚洲 | 狠狠干av| 国产一区二区不卡 | 在线观看深夜视频 | 盗摄精品av一区二区三区 | 中文字幕av一区 | 亚洲精品国产电影 | 久久久免费少妇高潮毛片 | 国产成人啪免费观看软件 | 麻豆精品一区二区三区在线观看 | 亚洲人成人一区二区在线观看 | 久国产视频 | 一区二区三区四区视频 | 日韩黄色免费 | 欧美精品99 | 精品视频一区二区三区在线观看 | 一区二区欧美在线 | 色综合一区二区 | 一区二区三区视频在线免费观看 | 欧美日韩国产精品一区二区 | 三级免费网| 亚洲日韩中文字幕一区 | 在线亚洲免费 | 一区二区三区亚洲精品国 | 黄一区二区三区 | 天天噜天天干 | 亚洲精品免费在线 | 精品亚洲一区二区三区 | 亚洲狠狠爱一区二区三区 | 91精品国产91久久久久久密臀 | 久久久亚洲一区 | 中文字幕视频一区二区 | 少妇一级淫片免费放播放 | 亚洲欧美综合精品久久成人 | 国产精品一区二区三区四区五区 | 欧美自拍日韩 | 亚洲国产精品一区在线观看 | 4h影视| 亚洲免费在线 | 91在线电影 |