Skip to content

Instantly share code, notes, and snippets.

View neil2ball's full-sized avatar

Neil Ball, II neil2ball

View GitHub Profile
@neil2ball
neil2ball / MD5.cs
Last active November 24, 2024 18:50 — forked from ameerkat/MD5.cs
MD5 Implementation in C# based on Wikipedia psuedocode
using System;
using System.Linq;
namespace MD5
{
/// <summary>
/// RFC for MD5 https://tools.ietf.org/html/rfc1321
/// Based on the pseudo code from Wikipedia: https://en.wikipedia.org/wiki/MD5
/// </summary>
public class MD5