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;