Created
June 26, 2012 10:57
-
-
Save nono/2995118 to your computer and use it in GitHub Desktop.
How to encrypt and decrypt Blowfish in Ruby 1.9 with https://github.com/drench/blowfish.js
This file contains 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
#!/usr/bin/env ruby | |
require "openssl" | |
class BF < Struct.new(:key, :pad_with_spaces) | |
def encrypt(str) | |
cipher = OpenSSL::Cipher.new('bf-ecb').encrypt | |
if pad_with_spaces | |
str += " " until str.bytesize % 8 == 0 | |
cipher.padding = 0 | |
end | |
cipher.key = key | |
binary_data = cipher.update(str) << cipher.final | |
hex_encoded = binary_data.unpack('H*').first | |
end | |
def decrypt(hex_encoded) | |
cipher = OpenSSL::Cipher.new('bf-ecb').decrypt | |
cipher.padding = 0 if pad_with_spaces | |
cipher.key = key | |
binary_data = [hex_encoded].pack('H*') | |
str = cipher.update(binary_data) << cipher.final | |
str.force_encoding(Encoding::UTF_8) | |
str | |
end | |
end | |
# Choose the encryption key. Its length must be a multiple of 8 and no longer than 56 | |
bf = BF.new("x"*56, true) | |
sentence = ARGV[0] || "foo bar foo bar foo bar foo bar foo bar foo bar baz" | |
encrypted = bf.encrypt(sentence) | |
puts encrypted.length | |
puts sentence.inspect | |
puts "Encrypt: #{encrypted}" | |
puts "Decoded: #{bf.decrypt encrypted}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great!