mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Fixed typo
This commit is contained in:
parent
90dbc12f3d
commit
8b8cb8789d
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue