From 8f81a583e517deaafe64aeb0209255f64cc135d8 Mon Sep 17 00:00:00 2001 From: citizen-VM Date: Mon, 24 Aug 2020 02:48:02 +0200 Subject: [PATCH] chore: add a little explanation --- main_form.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/main_form.cs b/main_form.cs index 6bab97e..266a80e 100644 --- a/main_form.cs +++ b/main_form.cs @@ -82,6 +82,7 @@ namespace KRY_0x01_ng string str_to_check = String.Join("", tb_k.Text.ToUpper().Distinct()); if (str_to_check.Length < 9) { + /* because why not, 8 is still lame */ MessageBox.Show($"The key is too short ({str_to_check.Length} characters).\nKey requirements: 9-25 unique alphabetic characters", "Error"); return; }