Sample code for 30+ languages & platforms
C#

MD4 Hash a String

See more Encryption Examples

MD4 hash a string.

Chilkat C# Downloads

C#
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Chilkat.Crypt2 crypt = new Chilkat.Crypt2();

string content = "The quick brown fox jumps over the lazy dog";

// The desired output is a hexidecimal string:
crypt.EncodingMode = "hex";

// Set the hash algorithm:
crypt.HashAlgorithm = "md4";

string hashStr;
hashStr = crypt.HashStringENC(content);

Debug.WriteLine(hashStr);

// The output is:
// 1BEE69A46BA811185C194762ABAEAE9