class OauthUtil
def nonce
openssl::random_bytes returns non-word chars, which need to be removed. using alt method to get length
def nonce Array.new( 5 ) { rand(256) }.pack('C*').unpack('H*').first end
def nonce Array.new( 5 ) { rand(256) }.pack('C*').unpack('H*').first end