We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d68b205 commit 469aaafCopy full SHA for 469aaaf
1 file changed
Encrypt/AesEncryption/AesEncryption.cs
@@ -9,6 +9,9 @@ public class AesEncryption : BaseAesEncryption
9
public byte[] AesEncrypt(byte[] data, byte[] secretKey, byte[] iv)
10
=> EncryptAES(data, secretKey, iv);
11
12
+ public byte[] AesDecrypt(byte[] data, byte[] secretKey, byte[] iv)
13
+ => DecryptAES(data, secretKey, iv);
14
+
15
public byte[] AesEncrypt(string data, string secretKey, string iv)
16
{
17
NullChecks(data, secretKey, iv);
0 commit comments