From 74718f328491a8546391c2a4d88c1a08524160a6 Mon Sep 17 00:00:00 2001 From: Jacob Pretorius Date: Mon, 25 Jun 2018 13:51:23 +0200 Subject: [PATCH] Update README.md Fixed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f4a281d..bb10ca1 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Install-Package NETCore.Encrypt -Version 2.0.6 #### Create AES Key ```csharp - var aseKey = EncryptProvider.CreateAesKey(); + var aesKey = EncryptProvider.CreateAesKey(); var key = aesKey.Key; var iv = aesKey.IV;