# File lib/Dnsruby/dnssec.rb, line 303
    def self.verify(msg, keys=nil)
      begin
        return true if @@anchor_verifier.verify(msg, keys=nil)
      rescue VerifyError
        begin
          return true if @@root_verifier.verify(msg, keys=nil)
        rescue VerifyError
          return true if @@dlv_verifier.verify(msg, keys=nil) # Will carry error to client
        end
      end
    end