# File tools/normtest.rb, line 10 def from_hex(str) ret = "" chars = str.split(" ") chars.each do |c| ret << [c.hex].pack("U") end return ret end