Method: SuperRandom#hexadecimal

Defined in:
lib/super_random/super_random.rb

#hexadecimal(n = 32) ⇒ Object

[View source]

56
57
58
# File 'lib/super_random/super_random.rb', line 56

def hexadecimal(n=32)
  bytes(n).map{|i|i.to_s(16).rjust(2,'0')}.join
end