Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. 0perator0402

    ruby rainbow tables

    hi, here is my script so far to make rainbow tables require 'digest/md5' string = "a" File.open("rainbow.txt", "a") do |f| while string != "zzzzzzzz" md5 = Digest::MD5.hexdigest(string) f.puts string + " : " + md5 string = string.next end end but string only goes into lowercase...

Part and Inventory Search

Back
Top