From 8b8cb8789d9b3a2e842afad104b024dd418c12aa Mon Sep 17 00:00:00 2001 From: Alexander Date: Thu, 7 Nov 2019 20:14:24 +0200 Subject: [PATCH] Fixed typo --- Crypto Notepad/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crypto Notepad/MainForm.cs b/Crypto Notepad/MainForm.cs index e3cc193..dc03e1a 100644 --- a/Crypto Notepad/MainForm.cs +++ b/Crypto Notepad/MainForm.cs @@ -478,7 +478,7 @@ private async Task UnlockFile() { string openedFileText = await reader.ReadToEndAsync(); richTextBox.Text = await AES.Decrypt(openedFileText, TypedPassword.Value, null, settings.HashAlgorithm, - Convert.ToInt32(settings.PasswordIterations), Convert.ToInt32(settings.KeySize)); ; + Convert.ToInt32(settings.PasswordIterations), Convert.ToInt32(settings.KeySize)); } richTextBox.Modified = false; fileLockedPanel.Visible = false;