.net core 常用rsa 加签类

using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Crypto.Parameters;
using Org.BouncyCastle.Math;
using Org.BouncyCastle.OpenSsl;
using Org.BouncyCastle.Pkcs;
using Org.BouncyCastle.Security;
using Org.BouncyCastle.X509;
using System;
using System.Collections.Generic;
using System.IO;
using System.Security.Cryptography;
using System.Text;
using System.Xml;
using System.Xml.Linq;


namespace Payment.LianLianPay.Sdk.Infrastructure
{
    public static class RsaHelper
    {
        /// 
        /// private key sign
        /// 
        /// 
        /// 
        /// 
        /// 
        public static string RsaSign(string preSign, bool isJavaFormatKey, string privateKey)
        {
            try
            {
                //// net
                //var rsa = new RSACryptoServiceProvider();
                //rsa.FromXmlString(privateKey);
                //byte[] signBytes = rsa.SignData(UTF8Encoding.UTF8.GetBytes(signStr), "md5");
                //return Convert.ToBase64String(signBytes);

                // net core 2.0
                using (var rsa = RSA.Create())
                {
                    if (isJavaFormatKey) privateKey = RsaPrivateKeyJava2DotNet(privateKey);
                    rsa.FromXmlStringExtensions(privateKey);
                    var bytes = rsa.SignData(Encoding.UTF8.GetBytes(preSign), HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1);
                    return Convert.ToBase64String(bytes);
                }
            }
            catch (Exception e)
            {
                throw new ArgumentException(e.Message);
            }
        }
        /// 
        /// .net => java Md5WithRsa 
        /// 
        /// 
        /// 
        /// 
        /// 
        public static string RsaSignMd5WithRsa(string preSign, bool isJavaFormatKey, string privateKey)
        {
            try
            {
                //// net
                //var rsa = new RSACryptoServiceProvider();
                //rsa.FromXmlString(privateKey);
                //byte[] signBytes = rsa.SignData(UTF8Encoding.UTF8.GetBytes(signStr), "md5");
                //return Convert.ToBase64String(signBytes);

                // net core 2.0
                using (var rsa = RSA.Create())
                {
                    if (isJavaFormatKey) privateKey = RsaPrivateKeyJava2DotNet(privateKey);
                    rsa.FromXmlStringExtensions(privateKey);
                    var bytes = rsa.SignData(Encoding.UTF8.GetBytes(preSign), HashAlgorithmName.MD5, RSASignaturePadding.Pkcs1);
                    return Convert.ToBase64String(bytes);
                }
            }
            catch (Exception e)
            {
                throw new ArgumentException(e.Message);
            }
        }
        /// 
        /// public key sign
        /// 
        /// 
        /// 
        /// 
        public static string RsaEncrypt(string preSign, string publicKey)
        {
            try
            {
                //// net
                //RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
                //rsa.FromXmlString(strPublicKey);
                //byte[] bytes = rsa.Encrypt(UTF8Encoding.UTF8.GetBytes(strEncryptInfo), false);
                //return Convert.ToBase64String(bytes);

                // net core 2.0
                using (var rsa = RSA.Create())
                {
                    publicKey = RsaPublicKeyJava2DotNet(publicKey);
                    rsa.FromXmlStringExtensions(publicKey);
                    var bytes = rsa.Encrypt(Encoding.UTF8.GetBytes(preSign), RSAEncryptionPadding.Pkcs1);
                    return Convert.ToBase64String(bytes);
                }
            }
            catch (Exception e)
            {
                throw new ArgumentException(e.Message);
            }
        }
        /// 
        /// public key validate
        /// 
        /// 
        /// 
        /// 
        /// 
        /// 
        public static bool ValidateRsaSign(string preSign, bool isJavaFormatKey, string publicKey, string signedData)
        {
            try
            {
                //// net
                //RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
                //rsa.FromXmlString(publicKey);
                //return rsa.VerifyData(UTF8Encoding.UTF8.GetBytes(plainText), "md5", Convert.FromBase64String(signedData));

                // net core 2.0
                using (var rsa = RSA.Create())
                {
                    if (isJavaFormatKey) publicKey = RsaPublicKeyJava2DotNet(publicKey);
                    rsa.FromXmlStringExtensions(publicKey);
                    return rsa.VerifyData(Encoding.UTF8.GetBytes(preSign), Convert.FromBase64String(signedData), HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1);
                }
            }
            catch (Exception e)
            {
                throw new ArgumentException(e.Message);
            }
        }
        /// 
        /// private key ,java->.net
        /// 
        /// 
        /// 
        public static string RsaPrivateKeyJava2DotNet(string privateKey)
        {
            if (string.IsNullOrEmpty(privateKey))
            {
                return string.Empty;
            }
            var privateKeyParam = (RsaPrivateCrtKeyParameters)PrivateKeyFactory.CreateKey(Convert.FromBase64String(privateKey));
            return
                $"{Convert.ToBase64String(privateKeyParam.Modulus.ToByteArrayUnsigned())}{Convert.ToBase64String(privateKeyParam.PublicExponent.ToByteArrayUnsigned())}

{Convert.ToBase64String(privateKeyParam.P.ToByteArrayUnsigned())}

{Convert.ToBase64String(privateKeyParam.Q.ToByteArrayUnsigned())}{Convert.ToBase64String(privateKeyParam.DP.ToByteArrayUnsigned())}{Convert.ToBase64String(privateKeyParam.DQ.ToByteArrayUnsigned())}{Convert.ToBase64String(privateKeyParam.QInv.ToByteArrayUnsigned())}{Convert.ToBase64String(privateKeyParam.Exponent.ToByteArrayUnsigned())}
"; } /// /// public key ,java->.net /// /// /// 格式转换结果 public static string RsaPublicKeyJava2DotNet(string publicKey) { if (string.IsNullOrEmpty(publicKey)) { return string.Empty; } var publicKeyParam = (RsaKeyParameters)PublicKeyFactory.CreateKey(Convert.FromBase64String(publicKey)); return string.Format( "{0}{1}", Convert.ToBase64String(publicKeyParam.Modulus.ToByteArrayUnsigned()), Convert.ToBase64String(publicKeyParam.Exponent.ToByteArrayUnsigned()) ); } /// /// private key ,.net->java /// /// .net生成的私钥 /// public static string RsaPrivateKeyDotNet2Java(string privateKey) { var doc = new XmlDocument(); doc.LoadXml(privateKey); var m = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("Modulus")[0].InnerText)); var exp = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("Exponent")[0].InnerText)); var d = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("D")[0].InnerText)); var p = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("P")[0].InnerText)); var q = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("Q")[0].InnerText)); var dp = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("DP")[0].InnerText)); var dq = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("DQ")[0].InnerText)); var qinv = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("InverseQ")[0].InnerText)); var privateKeyParam = new RsaPrivateCrtKeyParameters(m, exp, d, p, q, dp, dq, qinv); var privateKeyInfo = PrivateKeyInfoFactory.CreatePrivateKeyInfo(privateKeyParam); var serializedPrivateBytes = privateKeyInfo.ToAsn1Object().GetEncoded(); return Convert.ToBase64String(serializedPrivateBytes); } /// /// public key ,.net->java /// /// .net生成的公钥 /// public static string RsaPublicKeyDotNet2Java(string publicKey) { var doc = new XmlDocument(); doc.LoadXml(publicKey); var m = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("Modulus")[0].InnerText)); var p = new BigInteger(1, Convert.FromBase64String(doc.DocumentElement.GetElementsByTagName("Exponent")[0].InnerText)); var pub = new RsaKeyParameters(false, m, p); var publicKeyInfo = SubjectPublicKeyInfoFactory.CreateSubjectPublicKeyInfo(pub); var serializedPublicBytes = publicKeyInfo.ToAsn1Object().GetDerEncoded(); return Convert.ToBase64String(serializedPublicBytes); } // 处理 下面两种方式都会出现的 Operation is not supported on this platform 异常 // RSA.Create().FromXmlString(privateKey) // new RSACryptoServiceProvider().FromXmlString(privateKey) /// /// 扩展FromXmlString /// /// /// private static void FromXmlStringExtensions(this RSA rsa, string xmlString) { var parameters = new RSAParameters(); var xmlDoc = new XmlDocument(); xmlDoc.LoadXml(xmlString); if (xmlDoc.DocumentElement.Name.Equals("RSAKeyValue")) { foreach (XmlNode node in xmlDoc.DocumentElement.ChildNodes) { switch (node.Name) { case "Modulus": parameters.Modulus = (string.IsNullOrEmpty(node.InnerText) ? null : Convert.FromBase64String(node.InnerText)); break; case "Exponent": parameters.Exponent = (string.IsNullOrEmpty(node.InnerText) ? null : Convert.FromBase64String(node.InnerText)); break; case "P": parameters.P = (string.IsNullOrEmpty(node.InnerText) ? null : Convert.FromBase64String(node.InnerText)); break; case "Q": parameters.Q = (string.IsNullOrEmpty(node.InnerText) ? null : Convert.FromBase64String(node.InnerText)); break; case "DP": parameters.DP = (string.IsNullOrEmpty(node.InnerText) ? null : Convert.FromBase64String(node.InnerText)); break; case "DQ": parameters.DQ = (string.IsNullOrEmpty(node.InnerText) ? null : Convert.FromBase64String(node.InnerText)); break; case "InverseQ": parameters.InverseQ = (string.IsNullOrEmpty(node.InnerText) ? null : Convert.FromBase64String(node.InnerText)); break; case "D": parameters.D = (string.IsNullOrEmpty(node.InnerText) ? null : Convert.FromBase64String(node.InnerText)); break; } } } else { throw new Exception("Invalid XML RSA key."); } rsa.ImportParameters(parameters); } // /// // /// 扩展ToXmlString,创建公私钥 // /// // /// // /// // public static string ToCreateKey(bool includePrivateParameters) // { // using (var rsa = RSA.Create()) // { // var parameters = rsa.ExportParameters(includePrivateParameters); // return // $"{(parameters.Modulus != null ? Convert.ToBase64String(parameters.Modulus) : null)}{(parameters.Exponent != null ? Convert.ToBase64String(parameters.Exponent) : null)}

{(parameters.P != null ? Convert.ToBase64String(parameters.P) : null)}

{(parameters.Q != null ? Convert.ToBase64String(parameters.Q) : null)}{(parameters.DP != null ? Convert.ToBase64String(parameters.DP) : null)}{(parameters.DQ != null ? Convert.ToBase64String(parameters.DQ) : null)}{(parameters.InverseQ != null ? Convert.ToBase64String(parameters.InverseQ) : null)}{(parameters.D != null ? Convert.ToBase64String(parameters.D) : null)}
";
// } // } /// /// Generate XML Format RSA Key. Result: Index 0 is the private key and index 1 is the public key /// /// Key Size.Unit: bits /// public static List<string> XmlKey(int keySize) { using (var rsa = RSA.Create()) { rsa.KeySize = keySize; var rsap = rsa.ExportParameters(true); var res = new List<string>(); var privatElement = new XElement("RSAKeyValue"); //Modulus var primodulus = new XElement("Modulus", Convert.ToBase64String(rsap.Modulus)); //Exponent var priexponent = new XElement("Exponent", Convert.ToBase64String(rsap.Exponent)); //P var prip = new XElement("P", Convert.ToBase64String(rsap.P)); //Q var priq = new XElement("Q", Convert.ToBase64String(rsap.Q)); //DP var pridp = new XElement("DP", Convert.ToBase64String(rsap.DP)); //DQ var pridq = new XElement("DQ", Convert.ToBase64String(rsap.DQ)); //InverseQ var priinverseQ = new XElement("InverseQ", Convert.ToBase64String(rsap.InverseQ)); //D var prid = new XElement("D", Convert.ToBase64String(rsap.D)); privatElement.Add(primodulus); privatElement.Add(priexponent); privatElement.Add(prip); privatElement.Add(priq); privatElement.Add(pridp); privatElement.Add(pridq); privatElement.Add(priinverseQ); privatElement.Add(prid); //添加私钥 res.Add(privatElement.ToString()); var publicElement = new XElement("RSAKeyValue"); //Modulus var pubmodulus = new XElement("Modulus", Convert.ToBase64String(rsap.Modulus)); //Exponent var pubexponent = new XElement("Exponent", Convert.ToBase64String(rsap.Exponent)); publicElement.Add(pubmodulus); publicElement.Add(pubexponent); //添加公钥 res.Add(publicElement.ToString()); return res; } } /// /// Generate RSA key in Pkcs1 format. Result: Index 0 is the private key and index 1 is the public key /// /// Key Size.Unit: bits /// Whether the format is true If it is standard pem file format /// public static List<string> Pkcs1Key(int keySize, bool format = true) { var res = new List<string>(); var kpGen = GeneratorUtilities.GetKeyPairGenerator("RSA"); kpGen.Init(new KeyGenerationParameters(new SecureRandom(), keySize)); var keyPair = kpGen.GenerateKeyPair(); var sw = new StringWriter(); var pWrt = new PemWriter(sw); pWrt.WriteObject(keyPair.Private); pWrt.Writer.Flush(); var privateKey = sw.ToString(); if (!format) { privateKey = privateKey.Replace("-----BEGIN RSA PRIVATE KEY-----", "").Replace("-----END RSA PRIVATE KEY-----", "").Replace("\r\n", ""); } res.Add(privateKey); var swpub = new StringWriter(); var pWrtpub = new PemWriter(swpub); pWrtpub.WriteObject(keyPair.Public); pWrtpub.Writer.Flush(); var publicKey = swpub.ToString(); if (!format) { publicKey = publicKey.Replace("-----BEGIN PUBLIC KEY-----", "").Replace("-----END PUBLIC KEY-----", "").Replace("\r\n", ""); } res.Add(publicKey); return res; } /// /// Generate Pkcs8 format RSA key. Result: Index 0 is the private key and index 1 is the public key /// /// Key Size.Unit: bits /// Whether the format is true If it is standard pem file format /// public static List<string> Pkcs8Key(int keySize, bool format = true) { var res = new List<string>(); var kpGen = GeneratorUtilities.GetKeyPairGenerator("RSA"); kpGen.Init(new KeyGenerationParameters(new SecureRandom(), keySize)); var keyPair = kpGen.GenerateKeyPair(); var swpri = new StringWriter(); var pWrtpri = new PemWriter(swpri); var pkcs8 = new Pkcs8Generator(keyPair.Private); pWrtpri.WriteObject(pkcs8); pWrtpri.Writer.Flush(); var privateKey = swpri.ToString(); if (!format) { privateKey = privateKey.Replace("-----BEGIN PRIVATE KEY-----", "").Replace("-----END PRIVATE KEY-----", "").Replace("\r\n", ""); } res.Add(privateKey); var swpub = new StringWriter(); var pWrtpub = new PemWriter(swpub); pWrtpub.WriteObject(keyPair.Public); pWrtpub.Writer.Flush(); var publicKey = swpub.ToString(); if (!format) { publicKey = publicKey.Replace("-----BEGIN PUBLIC KEY-----", "").Replace("-----END PUBLIC KEY-----", "").Replace("\r\n", ""); } res.Add(publicKey); return res; } /// /// Public Key Convert xml->xml /// /// /// public static string PublicKeyXmlToPem(string publicKey) { var root = XElement.Parse(publicKey); //Modulus var modulus = root.Element("Modulus"); //Exponent var exponent = root.Element("Exponent"); var rsaKeyParameters = new RsaKeyParameters(false, new BigInteger(1, Convert.FromBase64String(modulus?.Value)), new BigInteger(1, Convert.FromBase64String(exponent?.Value))); var sw = new StringWriter(); var pWrt = new PemWriter(sw); pWrt.WriteObject(rsaKeyParameters); pWrt.Writer.Flush(); return sw.ToString(); } /// /// Private Key Convert xml->Pkcs1 /// /// /// public static string PrivateKeyXmlToPkcs1(string privateKey) { var root = XElement.Parse(privateKey); //Modulus var modulus = root.Element("Modulus"); //Exponent var exponent = root.Element("Exponent"); //P var p = root.Element("P"); //Q var q = root.Element("Q"); //DP var dp = root.Element("DP"); //DQ var dq = root.Element("DQ"); //InverseQ var inverseQ = root.Element("InverseQ"); //D var d = root.Element("D"); var rsaPrivateCrtKeyParameters = new RsaPrivateCrtKeyParameters( new BigInteger(1, Convert.FromBase64String(modulus?.Value)), new BigInteger(1, Convert.FromBase64String(exponent?.Value)), new BigInteger(1, Convert.FromBase64String(d?.Value)), new BigInteger(1, Convert.FromBase64String(p?.Value)), new BigInteger(1, Convert.FromBase64String(q?.Value)), new BigInteger(1, Convert.FromBase64String(dp?.Value)), new BigInteger(1, Convert.FromBase64String(dq?.Value)), new BigInteger(1, Convert.FromBase64String(inverseQ?.Value))); var sw = new StringWriter(); var pWrt = new PemWriter(sw); pWrt.WriteObject(rsaPrivateCrtKeyParameters); pWrt.Writer.Flush(); return sw.ToString(); } /// /// Format public key /// /// /// private static string PublicKeyFormat(string str) { if (str.StartsWith("-----BEGIN PUBLIC KEY-----")) { return str; } var res = new List<string> { "-----BEGIN PUBLIC KEY-----" }; var pos = 0; while (pos < str.Length) { var count = str.Length - pos < 64 ? str.Length - pos : 64; res.Add(str.Substring(pos, count)); pos += count; } res.Add("-----END PUBLIC KEY-----"); var resStr = string.Join("\r\n", res); return resStr; } /// /// Format Pkcs8 format private key /// /// /// private static string Pkcs8PrivateKeyFormat(string str) { if (str.StartsWith("-----BEGIN PRIVATE KEY-----")) { return str; } var res = new List<string> { "-----BEGIN PRIVATE KEY-----" }; var pos = 0; while (pos < str.Length) { var count = str.Length - pos < 64 ? str.Length - pos : 64; res.Add(str.Substring(pos, count)); pos += count; } res.Add("-----END PRIVATE KEY-----"); var resStr = string.Join("\r\n", res); return resStr; } /// /// Format Pkcs1 format private key /// Author:Zhiqiang Li /// /// /// private static string Pkcs1PrivateKeyFormat(string str) { if (str.StartsWith("-----BEGIN RSA PRIVATE KEY-----")) { return str; } var res = new List<string> { "-----BEGIN RSA PRIVATE KEY-----" }; var pos = 0; while (pos < str.Length) { var count = str.Length - pos < 64 ? str.Length - pos : 64; res.Add(str.Substring(pos, count)); pos += count; } res.Add("-----END RSA PRIVATE KEY-----"); var resStr = string.Join("\r\n", res); return resStr; } /// /// Remove the Pkcs8 format private key format /// /// /// private static string Pkcs8PrivateKeyFormatRemove(string str) { if (!str.StartsWith("-----BEGIN PRIVATE KEY-----")) { return str; } return str.Replace("-----BEGIN PRIVATE KEY-----", "").Replace("-----END PRIVATE KEY-----", "") .Replace("\r\n", ""); } /// /// public Key pem to xml /// /// /// public static string PublicKeyPemToXml(string publicKey) { publicKey = PublicKeyFormat(publicKey); var pr = new PemReader(new StringReader(publicKey)); var obj = pr.ReadObject(); if (!(obj is RsaKeyParameters rsaKey)) { throw new Exception("Public key format is incorrect"); } var publicElement = new XElement("RSAKeyValue"); //Modulus var pubmodulus = new XElement("Modulus", Convert.ToBase64String(rsaKey.Modulus.ToByteArrayUnsigned())); //Exponent var pubexponent = new XElement("Exponent", Convert.ToBase64String(rsaKey.Exponent.ToByteArrayUnsigned())); publicElement.Add(pubmodulus); publicElement.Add(pubexponent); return publicElement.ToString(); } /// /// Private Key Convert Pkcs1->xml /// /// /// public static string PrivateKeyPkcs1ToXml(string privateKey) { privateKey = Pkcs1PrivateKeyFormat(privateKey); var pr = new PemReader(new StringReader(privateKey)); if (!(pr.ReadObject() is AsymmetricCipherKeyPair asymmetricCipherKeyPair)) { throw new Exception("Private key format is incorrect"); } var rsaPrivateCrtKeyParameters = (RsaPrivateCrtKeyParameters)PrivateKeyFactory.CreateKey( PrivateKeyInfoFactory.CreatePrivateKeyInfo(asymmetricCipherKeyPair.Private)); var privatElement = new XElement("RSAKeyValue"); //Modulus var primodulus = new XElement("Modulus", Convert.ToBase64String(rsaPrivateCrtKeyParameters.Modulus.ToByteArrayUnsigned())); //Exponent var priexponent = new XElement("Exponent", Convert.ToBase64String(rsaPrivateCrtKeyParameters.PublicExponent.ToByteArrayUnsigned())); //P var prip = new XElement("P", Convert.ToBase64String(rsaPrivateCrtKeyParameters.P.ToByteArrayUnsigned())); //Q var priq = new XElement("Q", Convert.ToBase64String(rsaPrivateCrtKeyParameters.Q.ToByteArrayUnsigned())); //DP var pridp = new XElement("DP", Convert.ToBase64String(rsaPrivateCrtKeyParameters.DP.ToByteArrayUnsigned())); //DQ var pridq = new XElement("DQ", Convert.ToBase64String(rsaPrivateCrtKeyParameters.DQ.ToByteArrayUnsigned())); //InverseQ var priinverseQ = new XElement("InverseQ", Convert.ToBase64String(rsaPrivateCrtKeyParameters.QInv.ToByteArrayUnsigned())); //D var prid = new XElement("D", Convert.ToBase64String(rsaPrivateCrtKeyParameters.Exponent.ToByteArrayUnsigned())); privatElement.Add(primodulus); privatElement.Add(priexponent); privatElement.Add(prip); privatElement.Add(priq); privatElement.Add(pridp); privatElement.Add(pridq); privatElement.Add(priinverseQ); privatElement.Add(prid); return privatElement.ToString(); } /// /// Private Key Convert Pkcs8->xml /// /// /// public static string PrivateKeyPkcs8ToXml(string privateKey) { privateKey = Pkcs8PrivateKeyFormatRemove(privateKey); var privateKeyParam = (RsaPrivateCrtKeyParameters)PrivateKeyFactory.CreateKey(Convert.FromBase64String(privateKey)); var privatElement = new XElement("RSAKeyValue"); //Modulus var primodulus = new XElement("Modulus", Convert.ToBase64String(privateKeyParam.Modulus.ToByteArrayUnsigned())); //Exponent var priexponent = new XElement("Exponent", Convert.ToBase64String(privateKeyParam.PublicExponent.ToByteArrayUnsigned())); //P var prip = new XElement("P", Convert.ToBase64String(privateKeyParam.P.ToByteArrayUnsigned())); //Q var priq = new XElement("Q", Convert.ToBase64String(privateKeyParam.Q.ToByteArrayUnsigned())); //DP var pridp = new XElement("DP", Convert.ToBase64String(privateKeyParam.DP.ToByteArrayUnsigned())); //DQ var pridq = new XElement("DQ", Convert.ToBase64String(privateKeyParam.DQ.ToByteArrayUnsigned())); //InverseQ var priinverseQ = new XElement("InverseQ", Convert.ToBase64String(privateKeyParam.QInv.ToByteArrayUnsigned())); //D var prid = new XElement("D", Convert.ToBase64String(privateKeyParam.Exponent.ToByteArrayUnsigned())); privatElement.Add(primodulus); privatElement.Add(priexponent); privatElement.Add(prip); privatElement.Add(priq); privatElement.Add(pridp); privatElement.Add(pridq); privatElement.Add(priinverseQ); privatElement.Add(prid); return privatElement.ToString(); } /// /// Private Key Convert xml->Pkcs8 /// /// /// public static string PrivateKeyXmlToPkcs8(string privateKey) { var root = XElement.Parse(privateKey); //Modulus var modulus = root.Element("Modulus"); //Exponent var exponent = root.Element("Exponent"); //P var p = root.Element("P"); //Q var q = root.Element("Q"); //DP var dp = root.Element("DP"); //DQ var dq = root.Element("DQ"); //InverseQ var inverseQ = root.Element("InverseQ"); //D var d = root.Element("D"); var rsaPrivateCrtKeyParameters = new RsaPrivateCrtKeyParameters( new BigInteger(1, Convert.FromBase64String(modulus?.Value)), new BigInteger(1, Convert.FromBase64String(exponent?.Value)), new BigInteger(1, Convert.FromBase64String(d?.Value)), new BigInteger(1, Convert.FromBase64String(p?.Value)), new BigInteger(1, Convert.FromBase64String(q?.Value)), new BigInteger(1, Convert.FromBase64String(dp?.Value)), new BigInteger(1, Convert.FromBase64String(dq?.Value)), new BigInteger(1, Convert.FromBase64String(inverseQ?.Value))); var swpri = new StringWriter(); var pWrtpri = new PemWriter(swpri); var pkcs8 = new Pkcs8Generator(rsaPrivateCrtKeyParameters); pWrtpri.WriteObject(pkcs8); pWrtpri.Writer.Flush(); return swpri.ToString(); } /// /// Private Key Convert Pkcs1->Pkcs8 /// /// /// public static string PrivateKeyPkcs1ToPkcs8(string privateKey) { privateKey = Pkcs1PrivateKeyFormat(privateKey); var pr = new PemReader(new StringReader(privateKey)); var kp = pr.ReadObject() as AsymmetricCipherKeyPair; var sw = new StringWriter(); var pWrt = new PemWriter(sw); var pkcs8 = new Pkcs8Generator(kp?.Private); pWrt.WriteObject(pkcs8); pWrt.Writer.Flush(); var result = sw.ToString(); return result; } /// /// Private Key Convert Pkcs8->Pkcs1 /// /// /// public static string PrivateKeyPkcs8ToPkcs1(string privateKey) { privateKey = Pkcs8PrivateKeyFormat(privateKey); var pr = new PemReader(new StringReader(privateKey)); var kp = pr.ReadObject() as RsaPrivateCrtKeyParameters; var keyParameter = PrivateKeyFactory.CreateKey(PrivateKeyInfoFactory.CreatePrivateKeyInfo(kp)); var sw = new StringWriter(); var pWrt = new PemWriter(sw); pWrt.WriteObject(keyParameter); pWrt.Writer.Flush(); var result = sw.ToString(); return result; } } }

 

转载于:https://www.cnblogs.com/AsprosL/p/8251468.html

你可能感兴趣的:(.net core 常用rsa 加签类)