在 C# 中实现 RSA
我目前正在尝试实现一个类来使用 RSACrytoServiceProveider 类处理我的应用程序实例之间的安全通信。 第一个问题:实现一个类来处理发送者/接收者角色是个好主意还是应该将角色分成单独的类? 这就是我到目前为止所做的:
using System;
using System.Text;
using System.Security.Cryptography;
namespace Agnus.Cipher
{
public class RSA
{
private byte[] plaintextBytes;
private byte[] ciphertextBytes;
private RSACryptoServiceProvider rSAProviderThis;
private RSACryptoServiceProvider rSAProviderOther;
public string PublicKey
{
get { return rSAProviderThis.ToXmlString(false); }
}
public RSA()
{
rSAProviderThis = new RSACryptoServiceProvider { PersistKeyInCsp = true };
plaintextBytes = Encoding.Unicode.GetBytes(PublicKey);
}
public void InitializeRSAProviderOther(string parameters)
{
rSAProviderOther.FromXmlString(parameters);
}
public byte[] Encrypt()
{
return rSAProviderThis.Encrypt(plaintextBytes, true);
}
public byte[] Decrypt()
{
return rSAProviderThis.Decrypt(ciphertextBytes, true);
}
public byte[] Sign()
{
using (SHA1Managed SHA1 = new SHA1Managed())
{
byte[] hash = SHA1.ComputeHash(ciphertextBytes);
byte[] signature = rSAProviderThis.SignHash(hash, CryptoConfig.MapNameToOID("SHA1"));
return signature;
}
}
public void Verify()
{
throw new NotImplementedException();
}
}
}
第二个问题:我如何发送和接收要输入到班级中的数据? 我是这个领域的新手,将不胜感激。
I'm currently trying to implement a class to handle secure communications between instances of my app using RSACrytoServiceProveider class.
First question : is it a good idea implement a single class to handle sender/reciever roles or should i split the roles into individual classes ?. This is what i have done so far:
using System;
using System.Text;
using System.Security.Cryptography;
namespace Agnus.Cipher
{
public class RSA
{
private byte[] plaintextBytes;
private byte[] ciphertextBytes;
private RSACryptoServiceProvider rSAProviderThis;
private RSACryptoServiceProvider rSAProviderOther;
public string PublicKey
{
get { return rSAProviderThis.ToXmlString(false); }
}
public RSA()
{
rSAProviderThis = new RSACryptoServiceProvider { PersistKeyInCsp = true };
plaintextBytes = Encoding.Unicode.GetBytes(PublicKey);
}
public void InitializeRSAProviderOther(string parameters)
{
rSAProviderOther.FromXmlString(parameters);
}
public byte[] Encrypt()
{
return rSAProviderThis.Encrypt(plaintextBytes, true);
}
public byte[] Decrypt()
{
return rSAProviderThis.Decrypt(ciphertextBytes, true);
}
public byte[] Sign()
{
using (SHA1Managed SHA1 = new SHA1Managed())
{
byte[] hash = SHA1.ComputeHash(ciphertextBytes);
byte[] signature = rSAProviderThis.SignHash(hash, CryptoConfig.MapNameToOID("SHA1"));
return signature;
}
}
public void Verify()
{
throw new NotImplementedException();
}
}
}
Second question : how do i send and receive data to be fed into the class ? i'm a green horn in this field, pointers would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我会让加密/签名/解密/验证方法采用数据参数,而不是为其提供成员变量。 不过,拥有密钥和提供者的成员变量似乎没问题。 基本上我希望多次使用相同的密钥但不使用相同的数据。
我还将其设置为不可变 - 将所有变量设置为只读,在构造函数中获取提供程序所需的所有参数,而不是使用单独的初始化方法。
除此之外,将功能包装在一个更简单的 API 中以满足您的需求似乎是可以的,是的。
I would make the encrypt/sign/decrypt/verify methods take parameters for the data rather than having member variables for them. Having member variables for the key and provider seems okay though. Basically I'd expect to use the same key multiple times but not the same data.
I'd also make it immutable - make all the variables readonly, taking all the parameters you'll need for the providers in the constructor instead of having a separate initialisation method.
Beyond that, it seems okay to wrap the functionality in a simpler API for your needs though, yes.
我做了一些调整,这是实现的样子:
你们仍然没有提到如何建立通信(我正在考虑套接字)。 请赐教。
I have made some adjustments, here is what the implementation looks like:
you guys still haven't said anything about how communication is going to be established (i'm thinking sockets). Please enlighten me.
我不知道这段代码是否对您有帮助,我编写这段代码是为了能够在不同的加密算法中使用私钥/公钥对进行加密和解密,并且没有数据加密长度问题,事实上 .当您尝试管理超过 250 个字节(或多或少,抱歉我不记得了)的数据时,. NET 会受到影响。
我只是剪切和粘贴所需的方法,我还剪切了 xml 文档,因为不是英文,如果您发现这有用,请告诉我,我可以发布所有源代码。 我再说一遍,我没有测试这个剪切和粘贴版本,但我使用了这个类的完整版本,它没有那么不同。
顺便说一句:它是用 VB 编写的,但如果你只是需要潜伏它,我认为这就足够了;)
I don't know if this snip of code may help you, I've wrote this code to be able to crypt and decrypt with private/public key pairs in diverse crypting algortims and without data to encrypt length issue, infact RSA implementation in .NET suffer whe you try to manage more than 250 (more or less, sorry I don't recall) bytes of data.
I just cut and paste only methods needed, I also cutted xml documentation cause is not in english, if you found this useful let me know, I can post all source. I repeat I do not tested this cut&paste version, but I used the full version of this class that is not that different.
BTW: it's in VB, but if you just need to lurk at it I think it's enough ;)
@gogole:
实际上我不使用套接字,此代码以独立方式使用,并带有手工携带的密钥。
然而,一旦你有了你的加密机制,你的旅程就已经完成一半以上了。
这里缺少两个创建密钥的方法,正如您所要求的代码是完整的。
我希望你觉得这有帮助
@gogole:
actually I don't use sockets, this code is used in stand alone way with keys hand-bringed.
However once you have your crypt mechanism, you're at more than half of the journey.
Here there are two missing methods to create keys, as you requested the code is complete.
I hope you found this helpful
对 vb 不太了解,但尝试将 @Andrea Celin 转换为 c# 中有用的代码之一
Does not know much vb but tried to convert @Andrea Celin one of useful Code in c#