0
我有一個在csp format的私鑰。我需要遷移到Bouncy Castle。但是我沒有找到任何導入這種格式的函數。RSA使用彈性城堡與存儲在CSP博客中的密鑰
請你能幫我翻譯這段代碼嗎?
using (RSACryptoServiceProvider privatekey = new RSACryptoServiceProvider()) {
privatekey.ImportCspBlob("chave em csp");
Byte[] buffer = Encoding.GetEncoding("utf-8").GetBytes(textEdit1.Text);
Byte[] signature = privatekey.SignData(buffer, "SHA1");
return Convert.ToBase64String(signature);
}
感謝