-
Notifications
You must be signed in to change notification settings - Fork 0
/
EncryptionRSA.cs
58 lines (51 loc) · 1.56 KB
/
EncryptionRSA.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
using System.Security.Cryptography;
using System.Text;
using System.Text.Json;
using System.Xml.Serialization;
namespace RSATest;
public class AsymetricRSA
{
private static RSACryptoServiceProvider _rsaProvider = new RSACryptoServiceProvider(2048);
private readonly RSAParameters _privateKey;
private readonly RSAParameters _publicKey;
public AsymetricRSA()
{
_privateKey = _rsaProvider.ExportParameters(true);
_publicKey = _rsaProvider.ExportParameters(false);
}
public string GetPublicKeyXML()
{
var writer = new StringWriter();
var xmlS = new XmlSerializer(typeof(RSAParameters));
xmlS.Serialize(writer, _publicKey);
return writer.ToString();
}
public string RSAEncrypt(string dataToEncrypt)
{
try
{
_rsaProvider.ImportParameters(_publicKey);
var toEncrypt = Encoding.Unicode.GetBytes(dataToEncrypt);
var value = _rsaProvider.Encrypt(toEncrypt, false);
return Convert.ToBase64String(value);
}
catch (Exception e)
{
return e.GetBaseException().ToString();
}
}
public string RSADecrypt(string cypher)
{
try
{
_rsaProvider.ImportParameters(_privateKey);
var toDecrypt = Convert.FromBase64String(cypher);
var value = _rsaProvider.Decrypt(toDecrypt, false);
return Encoding.Unicode.GetString(value);
}
catch (Exception e)
{
return e.GetBaseException().ToString();
}
}
}