-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
71 lines (56 loc) · 2.07 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BruteforceAttackCaesarCipher
{
class Program
{
/// <summary>
///
/// </summary>
/// <param name="args"></param>
static void Main(string[] args)
{
Console.WriteLine("Bitte geben Sie ein verschlüsseltes Wort ein, ich werde versuchen es zu knacken ;-)");
string verschluesseltenTextKnacken = Console.ReadLine().ToLower();
BruteforceAttackCaesarCipher(verschluesseltenTextKnacken);
Console.ReadKey();
}
/// <summary>
/// </summary>
/// <param name="CipherText"></param>
static public void BruteforceAttackCaesarCipher(string CipherText)
{
string BruteforceText = CipherText;
char[] characterCipher = BruteforceText.ToCharArray();
for (int key = 0; key < 26; key++)
{
string Klartext = Decryption(characterCipher, key);
Console.WriteLine("Wenn der Schlüssel = " + key + " wäre \t " + " biete ich als Beispiel folgende Variante an: \t: " + Klartext);
}
}
static public string Decryption(char[] vsecretMessage, int vkey)
{
char[] alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".ToCharArray();
string verschluesselteNachricht = "";
for (int i = 0; i < vsecretMessage.Length; i++)
{
char c = vsecretMessage[i];
if (alphabet.Contains(c))
{
int position = Array.IndexOf(alphabet, c);
int position_new = position - vkey;
int rest = position_new % 26;
verschluesselteNachricht += alphabet[rest];
}
else
{
verschluesselteNachricht += c;
}
}
return verschluesselteNachricht;
}
}
}