小编Jos*_*ilu的帖子

“ASN1 损坏了数据。” 替换公钥但不替换私钥时出错

学习使用 RSA 签名的机制,我有一个可以在下面运行的代码块。

var privateRSAKey = File.ReadAllText("RSAPrivateKey.txt").Trim();
Regex privateRSAKeyRegex = new Regex(@"-----(BEGIN|END) RSA PRIVATE KEY-----[\W]*");
privateRSAKey = privateRSAKeyRegex.Replace(privateRSAKey, "");

//byte[602]
byte[] rsaPrivateKeyBytes = Convert.FromBase64String(privateRSAKey);

RSA rsa = RSA.Create();
rsa.ImportRSAPrivateKey(new ReadOnlySpan<byte>(rsaPrivateKeyBytes), out _);
Run Code Online (Sandbox Code Playgroud)

但类似的块无法用于替换另一个 rsa 对象上的公钥。

publicRSAKey = File.ReadAllText("RSAPublicKey.txt").Trim(); 
Regex publicRSAKeyRegex = new Regex(@"-----(BEGIN|END) PUBLIC KEY-----[\W]*");
publicRSAKey = publicRSAKeyRegex.Replace(publicRSAKey, "");

//byte[162]
byte[] rsaPublicKeyBytes = Convert.FromBase64String(publicRSAKey); 

RSA recipientRSA = RSA.Create(); 
recipientRSA.ImportRSAPublicKey(new ReadOnlySpan<byte>(rsaPublicKeyBytes), out _);
Run Code Online (Sandbox Code Playgroud)

我只想替换字符串文件中的公共 rsa 密钥,但出现错误

An unhandled exception of type 'System.Security.Cryptography.CryptographicException' occurred in System.Security.Cryptography.Algorithms.dll
ASN1 corrupted data.
Run Code Online (Sandbox Code Playgroud)

c# rsa asp.net-core

4
推荐指数
1
解决办法
1万
查看次数

标签 统计

asp.net-core ×1

c# ×1

rsa ×1