vote up 0 vote down star

Hi,

I have a string, lets say "123|ABC|test|12345|FF" and I want to xor the ascii value of each character and print the result in hex.

What is the simplest way?

flag
xor it with what? – ysth Dec 8 '08 at 10:21

2 Answers

vote up 2 vote down

Found it...

lrc = 0
input.each_byte do | c |
    lrc ^= c
end
hexVal = lrc.to_s(16)
link|flag
vote up 0 vote down

In Ruby 1.8.7 or 1.9.1:

input.bytes.inject { |a,b| a ^ b }.to_s(16)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.