We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6d4e35 commit eb6bd33Copy full SHA for eb6bd33
1 file changed
README.md
@@ -47,7 +47,7 @@ class Program
47
static async Task Main()
48
{
49
50
- var encryptedData = await AesEncryption.EncryptToBase64StringAsync("Hello, World!", "gdjdtsraewsuteastwerse=="
+ var encryptedData = await Aes.EncryptToBase64StringAsync("Hello, World!", "gdjdtsraewsuteastwerse=="
51
52
Console.WriteLine($"Encrypted Data: {encryptedData.EncryptedData}");
53
Console.WriteLine($"Initialization Vector: {encryptedData.Iv}");
@@ -106,7 +106,7 @@ class Program
106
};
107
108
109
- var decryptionData = await AesDecryption.DecryptFromBase64StringAsync(decryptorParam);
+ var decryptionData = await Aes.DecryptFromBase64StringAsync(decryptorParam);
110
111
Console.WriteLine(decryptionData.DecryptedData);
112
Console.WriteLine(decryptionData.Iv);
0 commit comments