mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
218 B
Ruby
15 lines
218 B
Ruby
|
# just for compatibility; requiring "md5" is obsoleted
|
||
|
#
|
||
|
# $RoughId: md5.rb,v 1.4 2001/07/13 15:38:27 knu Exp $
|
||
|
# $Id$
|
||
|
|
||
|
require 'digest/md5'
|
||
|
|
||
|
MD5 = Digest::MD5
|
||
|
|
||
|
class MD5
|
||
|
def self.md5(*args)
|
||
|
new(*args)
|
||
|
end
|
||
|
end
|