# File lib/openid/consumer.rb, line 620
    def create_nonce
      # build the nonce and store it
      nonce = OpenID::Util.random_string(@@NONCE_LEN, @@NONCE_CHRS)
      @store.store_nonce(nonce)
      return nonce
    end