Created
November 14, 2016 07:12
-
-
Save panggi/3eb474d99e5eb7c091511c152a532c19 to your computer and use it in GitHub Desktop.
generate table for time-memory tradeoff in ruby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'digest' | |
| require 'csv' | |
| FILE_RANGE = 10000000 | |
| ORIGINAL_FILE = "tables/#{FILE_RANGE}.csv" | |
| FINAL_FILE = "tables/#{FILE_RANGE}-sorted.csv" | |
| start_time = Time.now | |
| puts "Creating all possible combination cipher in range: #{FILE_RANGE}.." | |
| combination_start_time = Time.now | |
| CSV.open(ORIGINAL_FILE, "wb") do |csv| | |
| csv << ["cipher","plain"] | |
| (1..FILE_RANGE).each do |num| | |
| plain = num.to_s | |
| cipher = Digest::MD5.hexdigest(plain) | |
| csv << [cipher,plain] | |
| end | |
| end | |
| combination_end_time = Time.now | |
| puts "All combination cipher generation time: #{combination_end_time - combination_start_time}" | |
| puts "Sorting and shortening the key length.." | |
| sorting_start_time = Time.now | |
| unshortened_hash = {} | |
| CSV.foreach(ORIGINAL_FILE, :headers => true) do |row| | |
| unshortened_hash[row.fields[0][0..7]] = row.fields[1].to_s | |
| end | |
| sorted_hash = Hash[unshortened_hash.sort_by{ |k, v| k }] | |
| CSV.open(FINAL_FILE, "wb") do |csv| | |
| csv << ["cipher","plain"] | |
| sorted_hash.each do |sorted| | |
| csv << [sorted[0], sorted[1]] | |
| end | |
| end | |
| sorting_end_time = Time.now | |
| puts "Time for sorting and shortening keys: #{sorting_end_time - sorting_start_time}" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment