method
generate_next_nonce
generate_next_nonce(req)
private
Hide source
# File lib/webrick/httpauth/digestauth.rb, line 297 def generate_next_nonce(req) now = "%012d" % req.request_time.to_i pk = hexdigest(now, @instance_key)[0,32] nonce = [now + ":" + pk].pack("m*").chop # it has 60 length of chars. nonce end


