-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathInfo.cs
19 lines (17 loc) · 972 Bytes
/
Info.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
namespace AESAllTheThings
{
class Info
{
public static void PrintBanner()
{
Console.WriteLine(@" _______ _______ ___ _______ _______.____ ____ ");
Console.WriteLine(@" / _____| / _____| / \ | ____| / |\ \ / / ");
Console.WriteLine(@"| | __ | | __ ______ / ^ \ | |__ | (----` \ \/ / ");
Console.WriteLine(@"| | |_ | | | |_ | |______| / /_\ \ | __| \ \ \_ _/ ");
Console.WriteLine(@"| |__| | | |__| | / _____ \ | |____.----) | | |");
Console.WriteLine(@" \______| \______| /__/ \__\ |_______|_______/ |__| ");
Console.WriteLine("\n\n\tV1.0.0 by Jean-Francois Maes - redteamer.tips - twitter.com/jean_maes_1994 \n");
}
}
}