Skip to content

Instantly share code, notes, and snippets.

View Bardin08's full-sized avatar
🐈
Meow

Vladyslav Bardin Bardin08

🐈
Meow
View GitHub Profile
@hclewk
hclewk / password.cs
Created December 31, 2016 18:11
Hash a password in c#
using System;
using System.Text;
using System.Security.Cryptography;
namespace PasswordHash
{
/// <summary>
/// Salted password hashing with PBKDF2-SHA1.
/// Author: havoc AT defuse.ca
/// www: http://crackstation.net/hashing-security.htm