Skip to content

Instantly share code, notes, and snippets.

View inakineitor's full-sized avatar
🐡

Iñaki Arango inakineitor

🐡
View GitHub Profile
@jwoschitz
jwoschitz / gist:1129249
Created August 6, 2011 10:29
Brute force implementation / C#
class Program
{
#region Private variables
// the secret password which we will try to find via brute force
private static string password = "p123";
private static string result;
private static bool isMatched = false;