We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeb0ad7 commit 40615efCopy full SHA for 40615ef
1 file changed
src/Encryption/AesEncryption/Models/EncryptionData.cs
@@ -12,11 +12,19 @@ public class EncryptionData
12
/// <summary>
13
/// Gets or sets the data to be encrypted.
14
/// </summary>
15
- public byte[] Data { get; set; }
+ public string EncryptedData { get; set; }
16
17
18
/// Gets or sets the initialization vector (IV) used for encryption.
19
20
- public byte[] Iv { get; set; }
+ public string Iv { get; set; }
21
+
22
+ /// <summary>
23
+ /// Gets or sets the secret key used for encryption. Should be a base64 string
24
+ /// </summary>
25
+ public string SecretKey { get; set; }
26
27
+ public bool HasError { get; set; }
28
+ public List<string> Errors { get; set; } = new List<string>();
29
}
30
0 commit comments