Skip to content

Instantly share code, notes, and snippets.

View vladmiller's full-sized avatar
🎯
Focusing

Vlad Miller vladmiller

🎯
Focusing
View GitHub Profile
@amscotti
amscotti / md5.coffee
Last active January 18, 2021 12:54
MD5 hashing
crypto = require('crypto');
#Quick MD5 of text
text = "MD5 this text!"
md5hash1 = crypto.createHash('md5').update(text).digest("hex")
#MD5 of text with updates
m = crypto.createHash('md5')
m.update("MD5 ")
m.update("this ")