Needed a newline on bruteforce decryption for caesarian ciphers

This commit is contained in:
DarkFeather 2022-08-16 10:17:23 -05:00
parent 70bb70b3ed
commit 614941b520
Signed by: DarkFeather
GPG Key ID: 1CC1E3F4ED06F296
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ namespace AniNIX.Crypto {
line[1] = "encrypt";
for (int i=0; i<26; i++) {
line[2]=i.ToString();
Console.Write(String.Format("{0,2}: {1}",i,Encrypt(workSpace,null,line)));
Console.Write(String.Format("{0,2}: {1}\n",i,Encrypt(workSpace,null,line)));
}
}
}