Skip to content

Instantly share code, notes, and snippets.

@beepony
Created May 23, 2016 07:39
Show Gist options
  • Save beepony/ea0d2e7dc5a58392fd965243fd0069ed to your computer and use it in GitHub Desktop.
Save beepony/ea0d2e7dc5a58392fd965243fd0069ed to your computer and use it in GitHub Desktop.
#! /usr/bin/ruby -w
# author:beepony
# description: md5 digest string
require 'digest'
def md5(string)
Digest::MD5.hexdigest(string.encode('utf-8'))
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment