We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 604566f commit d8c675cCopy full SHA for d8c675c
1 file changed
src/SafeCrypt.Lib/Encryption/AesEncryption/Models/Decrypt/DecryptionData.cs
@@ -2,24 +2,11 @@
2
3
namespace SafeCrypt.Models
4
{
5
- public class DecryptionData
+ public class DecryptionData : BaseAesData
6
7
/// <summary>
8
- /// Gets or sets the data to be encrypted.
+ /// Gets or sets the data to be decrypted.
9
/// </summary>
10
public string DecryptedData { get; set; }
11
-
12
- /// <summary>
13
- /// Gets or sets the initialization vector (IV) used for encryption.
14
- /// </summary>
15
- public string Iv { get; set; }
16
17
18
- /// Gets or sets the secret key used for encryption. Should be a base64 string
19
20
- public string SecretKey { get; set; }
21
22
- public bool HasError { get; set; }
23
- public List<string> Errors { get; set; } = new List<string>();
24
}
25
0 commit comments