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?
Found it...
lrc = 0 input.each_byte do | c | lrc ^= c end hexVal = lrc.to_s(16)
In Ruby 1.8.7 or 1.9.1:
input.bytes.inject { |a,b| a ^ b }.to_s(16)
Stack Overflow is a collaboratively edited question and answer site for programmers – regardless of platform or language. It's 100% free, no registration required.
about » faq »
tagged
asked
11 months ago
viewed
447 times
latest activity