RSA非對稱 私鑰加密

来源:https://www.cnblogs.com/liuchangxu/archive/2019/09/23/11573327.html
-Advertisement-
Play Games

RSA生成公鑰和私鑰對 1 /// <summary> 2 /// RSA生成公鑰和私鑰 3 /// </summary> 4 /// <returns></returns> 5 public static string[] GenerateKeys() 6 { 7 try 8 { 9 string ...


RSA生成公鑰和私鑰對

 1 /// <summary>
 2         /// RSA生成公鑰和私鑰
 3         /// </summary>
 4         /// <returns></returns>
 5         public static string[] GenerateKeys()
 6         {
 7             try
 8             {
 9                 string[] sKeys = new String[2];
10                 RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(1024);
11                 sKeys[0] = rsa.ToXmlString(true);//私鑰
12                 sKeys[1] = rsa.ToXmlString(false);//公鑰
13                 return sKeys;
14             }
15             catch (Exception)
16             {
17                 return null;
18             }
19         }
View Code

RSA私鑰格式轉換

 1 public class RSAKeyConvert
 2     {
 3         /// <summary>
 4         /// RSA私鑰格式轉換,java->.net
 5         /// </summary>
 6         /// <param name="privateKey">java生成的RSA私鑰</param>
 7         /// <returns></returns>
 8         public static string RSAPrivateKeyJava2DotNet(string privateKey)
 9         {
10             RsaPrivateCrtKeyParameters privateKeyParam = (RsaPrivateCrtKeyParameters)PrivateKeyFactory.CreateKey(Convert.FromBase64String(privateKey));
11 
12             return string.Format("<RSAKeyValue><Modulus>{0}</Modulus><Exponent>{1}</Exponent><P>{2}</P><Q>{3}</Q><DP>{4}</DP><DQ>{5}</DQ><InverseQ>{6}</InverseQ><D>{7}</D></RSAKeyValue>",
13                 Convert.ToBase64String(privateKeyParam.Modulus.ToByteArrayUnsigned()),
14                 Convert.ToBase64String(privateKeyParam.PublicExponent.ToByteArrayUnsigned()),
15                 Convert.ToBase64String(privateKeyParam.P.ToByteArrayUnsigned()),
16                 Convert.ToBase64String(privateKeyParam.Q.ToByteArrayUnsigned()),
17                 Convert.ToBase64String(privateKeyParam.DP.ToByteArrayUnsigned()),
18                 Convert.ToBase64String(privateKeyParam.DQ.ToByteArrayUnsigned()),
19                 Convert.ToBase64String(privateKeyParam.QInv.ToByteArrayUnsigned()),
20                 Convert.ToBase64String(privateKeyParam.Exponent.ToByteArrayUnsigned()));
21         }
22 
23         /// <summary>
24         /// RSA私鑰格式轉換,.net->java
25         /// </summary>
26         /// <param name="privateKey">.net生成的私鑰</param>
27         /// <returns></returns>
28         public static string RSAPrivateKeyDotNet2Java(string privateKey)
29         {
30             XmlDocument doc = new XmlDocument();
31             doc.LoadXml(privateKey);
32             BigInteger m = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("Modulus")[0].InnerText));
33             BigInteger exp = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("Exponent")[0].InnerText));
34             BigInteger d = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("D")[0].InnerText));
35             BigInteger p = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("P")[0].InnerText));
36             BigInteger q = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("Q")[0].InnerText));
37             BigInteger dp = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("DP")[0].InnerText));
38             BigInteger dq = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("DQ")[0].InnerText));
39             BigInteger qinv = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("InverseQ")[0].InnerText));
40 
41             RsaPrivateCrtKeyParameters privateKeyParam = new RsaPrivateCrtKeyParameters(m, exp, d, p, q, dp, dq, qinv);
42 
43             PrivateKeyInfo privateKeyInfo = PrivateKeyInfoFactory.CreatePrivateKeyInfo(privateKeyParam);
44             byte[] serializedPrivateBytes = privateKeyInfo.ToAsn1Object().GetEncoded();
45             return Convert.ToBase64String(serializedPrivateBytes);
46         }
47 
48         /// <summary>
49         /// RSA公鑰格式轉換,java->.net
50         /// </summary>
51         /// <param name="publicKey">java生成的公鑰</param>
52         /// <returns></returns>
53         public static string RSAPublicKeyJava2DotNet(string publicKey)
54         {
55             RsaKeyParameters publicKeyParam = (RsaKeyParameters)PublicKeyFactory.CreateKey(Convert.FromBase64String(publicKey));
56             return string.Format("<RSAKeyValue><Modulus>{0}</Modulus><Exponent>{1}</Exponent></RSAKeyValue>",
57                 Convert.ToBase64String(publicKeyParam.Modulus.ToByteArrayUnsigned()),
58                 Convert.ToBase64String(publicKeyParam.Exponent.ToByteArrayUnsigned()));
59         }
60 
61         /// <summary>
62         /// RSA公鑰格式轉換,.net->java
63         /// </summary>
64         /// <param name="publicKey">.net生成的公鑰</param>
65         /// <returns></returns>
66         public static string RSAPublicKeyDotNet2Java(string publicKey)
67         {
68             XmlDocument doc = new XmlDocument();
69             doc.LoadXml(publicKey);
70             BigInteger m = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("Modulus")[0].InnerText));
71             BigInteger p = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("Exponent")[0].InnerText));
72             RsaKeyParameters pub = new RsaKeyParameters(false, m, p);
73 
74             SubjectPublicKeyInfo publicKeyInfo = SubjectPublicKeyInfoFactory.CreateSubjectPublicKeyInfo(pub);
75             byte[] serializedPublicBytes = publicKeyInfo.ToAsn1Object().GetDerEncoded();
76             return Convert.ToBase64String(serializedPublicBytes);
77         }
78     }
View Code

私鑰加密數據

 1 /// <summary>
 2         /// 用私鑰給數據進行RSA加密  
 3         /// </summary>  
 4         /// <param name="xmlPrivateKey">私鑰</param>  
 5         /// <param name="strEncryptString">待加密數據</param>  
 6         /// <returns>加密後的數據(Base64)</returns>  
 7         public static string RSAEncryptByPrivateKey(string xmlPrivateKey, string strEncryptString)
 8         {
 9             //載入私鑰  
10             RSACryptoServiceProvider privateRsa = new RSACryptoServiceProvider(1024);
11             privateRsa.FromXmlString(xmlPrivateKey);
12 
13             //轉換密鑰  
14             AsymmetricCipherKeyPair keyPair = DotNetUtilities.GetKeyPair(privateRsa);
15 
16             IBufferedCipher c = CipherUtilities.GetCipher("RSA/ECB/PKCS1Padding");// 參數與Java中加密解密的參數一致
17             //第一個參數為true表示加密,為false表示解密;第二個參數表示密鑰
18             c.Init(true, keyPair.Private);
19 
20             byte[] DataToEncrypt = Encoding.UTF8.GetBytes(strEncryptString);
21             byte[] outBytes = c.DoFinal(DataToEncrypt);//加密  
22             string strBase64 = Convert.ToBase64String(outBytes);
23 
24             return strBase64;
25         }
View Code

需要引用BouncyCastle.Crypto.dll


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 多好,多簡單,多好 ...
  • 一、題目 設平面上分佈著n個白點和n個黑點,每個點用一對坐標(x, y)表示。一個黑點b=(xb,yb)支配一個白點w=(xw, yw)當且僅當xb>=xw和yb>=yw。 若黑點b支配白點w,則黑點b和白點w可匹配(可形成一個匹配對)。 在一個黑點最多只能與一個白點匹配,一個白點最多只能與一個黑點 ...
  • 在webform中,驗證的流程大致如下圖: 在AOP中: 在Filter中: AuthorizeAttribute許可權驗證 登錄後有許可權控制,有的頁面是需要用戶登錄才能訪問的,需要在訪問頁面增加一個驗證,也不能每個action都一遍。 1、寫一個CustomAuthorAttribute,繼承自Au ...
  • Ajax請求數據響應格式,一個醒目組必須是同意的,前端才知道怎麼應付,還有很多其他情況,比如異常了,有ExceptionFilter,按照固定格式返回,比如沒有許可權,Authorization,按照固定格式返回。 Http請求的本質: 請求--應答式,響應可以那麼豐富?不同的類型其實方式一樣的,只不 ...
  • MVCApplication Application_Statr--RegisterRoutes--給RouteCollection添加規則,請求進到網站 X 請求地址被路由按照順序匹配,遇到一個溫和的就結束,就到對應的控制器和action。 在程式中使用log4net,首先nuget引入程式集 L ...
  •   為了讓我們第一時間知道程式的運行狀態,Asp.Net Core 添加了預設的日誌輸出服務。這看起來並沒有什麼問題,對於開發人員也相當友好,但如果不瞭解日誌輸出的細節,也有可能因為錯誤的日誌級別配置導致性能問題,筆者的同事在一次進行性能測試的時候被輸出日誌誤導,與其討論分析了測 ...
  • 場景 Winform中實現讀取xml配置文件並動態配置ZedGraph的RadioGroup的選項: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/100540708 在上面實現了將RadioGroup的選項根據配置文件動態配置後 ...
  • 今天,他來了(weboffice線上編輯文檔)。 上次寫了一個線上預覽的博,當然,效果並不是太理想,但是緊急解決了當時的問題。 後來,小編重新查找資料,求助大牛,終於使用新的方式替換了之前的low方法。 有兩種比較好的方法,一種是webOffice,一種是pageoffice,前者免費,後者付費。果 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...