forked from myloveCc/NETCore.Encrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRSAKey.cs
More file actions
29 lines (25 loc) · 634 Bytes
/
RSAKey.cs
File metadata and controls
29 lines (25 loc) · 634 Bytes
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
using System;
using System.Collections.Generic;
using System.Text;
namespace NETCore.Encrypt.Internal
{
public class RSAKey
{
/// <summary>
/// Rsa public key
/// </summary>
public string PublicKey { get; set; }
/// <summary>
/// Rsa private key
/// </summary>
public string PrivateKey { get; set; }
/// <summary>
/// Rsa public key Exponent
/// </summary>
public string Exponent { get; set; }
/// <summary>
/// Rsa public key Modulus
/// </summary>
public string Modulus { get; set; }
}
}