C# 调用BouncyCastle将RSA密钥与pem格式进行互转

本文介绍了如何在C#中利用BouncyCastle库,将RSA密钥进行PEM格式的转换。包括将RSA私钥转换为PEM格式,RSA公钥转换为PEM格式,以及将PEM格式还原为RSA私钥和公钥的详细步骤。
摘要由CSDN通过智能技术生成
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Security.Cryptography;
using System.IO;

using Org.BouncyCastle.Crypto.Parameters;
using Org.BouncyCastle.Math;
using Org.BouncyCastle.Crypto;


public sealed class CryptoHelper
{
    /// <summary>
    /// RSA密钥转Pem密钥
    /// </summary>
    /// <param name="RSAKey">RSA密钥</param>
    /// <param name="isPrivateKey">是否是私钥</param>
    /// <returns>Pem密钥</returns>
    public static string RSAKeyToPem(string RSAKey, bool isPrivateKey)
    {
        string pemKey = string.Empty;
        var rsa = new RSACryptoServiceProvider();
        rsa.FromXmlString(RSAKey);
        RSAParameters rsaPara = new RSAParameters();
        RsaKeyParameters key = null;
        //RSA私钥
        if (isPrivateKey)
        {
            rsaPara=rsa.ExportPa
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值