gpt4 book ai didi

c# - 如何在 C# 中导入 PKCS#8 RSA 私钥(由 OpenSSL 创建)

转载 作者:行者123 更新时间:2023-11-30 15:11:58 28 4
gpt4 key购买 nike

我正在尝试找到一种方法来读取在 C# 中使用 OpenSSL PKCS#8 RSA 创建的私钥,而无需使用外部库。

有人知道我该怎么做吗?

最佳答案

从 .Net Core 3 开始:

using System.Security.Cryptography;

// ...

// I had my PK in base64
var pkBase64 = "MIIEvQI...";

var rsa = RSA.Create();
rsa.ImportPkcs8PrivateKey(Convert.FromBase64String(pkBase64), out _);

供引用:https://learn.microsoft.com/en-us/dotnet/api/system.security.cryptography.rsa.importpkcs8privatekey?view=net-5.0

关于c# - 如何在 C# 中导入 PKCS#8 RSA 私钥(由 OpenSSL 创建),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1722305/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com