hash_md5()

Learn how to use the hash_md5() function to return the MD5 hash value of the input.

Returns an MD5 hash value of the input.

Syntax

hash_md5(source)

Parameters

NameTypeRequiredDescription
sourcescalar✔️The value to be hashed.

Returns

The MD5 hash value of the given scalar, encoded as a hex string (a string of characters, each two of which represent a single Hex number between 0 and 255).

Examples

print 
h1=hash_md5("World"),
h2=hash_md5(datetime(2020-01-01))

Output

h1h2
f5a7924e621e84c9280a9a27e1bcb7f6786c530672d1f8db31fee25ea8a9390b

The following example uses the hash_md5() function to aggregate StormEvents based on State’s MD5 hash value.

StormEvents
| summarize StormCount = count() by State, StateHash=hash_md5(State)
| top 5 by StormCount

Output

StateStateHashStormCount
TEXAS3b00dbe6e07e7485a1c12d36c8e9910a4701
KANSASe1338d0ac8be43846cf9ae967bd02e7f3166
IOWA6d4a7c02942f093576149db764d4e2d22337
ILLINOIS8c00d9e0b3fcd55aed5657e42cc40cf12022
MISSOURI2d82f0c963c0763012b2539d469e50082016