We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a53a904 commit 4b02849Copy full SHA for 4b02849
1 file changed
src/SafeCrypt.Lib/Encryption/RsaEncryption/Models/Encrypt/RsaEncryptionParameters.cs
@@ -0,0 +1,20 @@
1
+namespace SafeCrypt.RsaEncryption.Models
2
+{
3
+ internal class RsaEncryptionParameters : IEncryptionData
4
+ {
5
+ /// <summary>
6
+ /// Gets or sets the public key for RSA encryption.
7
+ /// </summary>
8
+ public string PublicKey { get; set; }
9
+
10
11
+ /// Gets or sets the private key for RSA encryption.
12
13
+ public string PrivateKey { get; set; }
14
15
16
+ /// Gets or sets the data to be encrypted using RSA.
17
18
+ public string DataToEncrypt { get; set; }
19
+ }
20
+}
0 commit comments