Skip to content

Instantly share code, notes, and snippets.

@nono
Created June 26, 2012 10:57
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save nono/2995118 to your computer and use it in GitHub Desktop.
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
#!/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}"
@Dagnan
Copy link

Dagnan commented Dec 13, 2013

Great!

@thiyagarajan
Copy link

Good Work!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment