Skip to content

Simplify.Cryptography

Alexanderius edited this page Jan 23, 2021 · 3 revisions

Simplify.Cryphography Documentation

Provides MD5 class for MD5 cryptography operations.

Available at NuGet as binary package

// Get MD5 hash code of an input string
public static string GetHash(string input);

// Verify a hash against a string.
public static bool VerifyHash(string input, string hash);