Skip to content

Commit eb6bd33

Browse files
committed
update readme doc
1 parent d6d4e35 commit eb6bd33

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class Program
4747
static async Task Main()
4848
{
4949

50-
var encryptedData = await AesEncryption.EncryptToBase64StringAsync("Hello, World!", "gdjdtsraewsuteastwerse=="
50+
var encryptedData = await Aes.EncryptToBase64StringAsync("Hello, World!", "gdjdtsraewsuteastwerse=="
5151

5252
Console.WriteLine($"Encrypted Data: {encryptedData.EncryptedData}");
5353
Console.WriteLine($"Initialization Vector: {encryptedData.Iv}");
@@ -106,7 +106,7 @@ class Program
106106
};
107107

108108

109-
var decryptionData = await AesDecryption.DecryptFromBase64StringAsync(decryptorParam);
109+
var decryptionData = await Aes.DecryptFromBase64StringAsync(decryptorParam);
110110

111111
Console.WriteLine(decryptionData.DecryptedData);
112112
Console.WriteLine(decryptionData.Iv);

0 commit comments

Comments
 (0)