Skip to content

Instantly share code, notes, and snippets.

View inakineitor's full-sized avatar
🐡

Iñaki Arango inakineitor

🐡
View GitHub Profile
@inakineitor
inakineitor / gist:0cf86720cd3fa4c87c671f9432aebecd
Created September 15, 2016 23:14 — forked from jwoschitz/gist:1129249
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;