我有一个 RFC 7468 中所述格式的 RSA 私钥,我使用的库需要一个 SecurityKey
实例 没有一个构造函数似乎接受这种格式的字符串,也没有任何构造函数接受的参数似乎接受这个格式。
最佳答案
Found a Library that handles PEM Keys in .Net ,如果同时包含 DerConverter 和 PemUtils,则可以简单地读取文件:
RsaSecurityKey key;
using (var stream = File.OpenRead(path))
using (var reader = new PemReader(stream))
{
key = new RsaSecurityKey(reader.ReadRsaKey());
// ...
}
关于c# - 如何从 SSL key 文件创建 RsaSecurityKey 的实例,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44585859/