I would like to encode some plain text using Ruby and the Crypt library. I would like to then transmit this encrypted text (along with some other data) as an ASCII hexadecimal string within an XML file.
I have the following code snippet:
require 'rubygems'
require 'crypt/blowfish'
plain = "This is the plain text"
puts plain
blowfish = Crypt::Blowfish.new("A key up to 56 bytes long")
enc = blowfish.encrypt_block(plain)
puts enc
Which outputs:
This is the plain text ????;
I believe I need to call enc.unpack() but I’m not sure what parameters are required to the unpack method call.
When you say “ASCII hexadecimal” do you mean that it merely needs to be readable ASCII or does it need to be strictly hexadecimal?
Here’s two approaches to encoding binary data: