# File lib/merb-core/controller/mixins/authentication.rb, line 107
    def authenticate(&authenticator)
      if @auth.provided? and @auth.basic?
        authenticator.call(*@auth.credentials)
      else
        false
      end
    end