├── .github └── workflows │ └── go-ci.yml ├── .gitignore ├── .idea ├── .name ├── dictionaries │ └── peter.xml ├── encodings.xml ├── goresolver.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .travis.yml ├── LICENSE ├── README.md ├── authchain.go ├── coverage.txt ├── examples └── mxlookup │ └── mxlookup.go ├── go.mod ├── go.sum ├── go.test.sh ├── goresolver.go ├── goresolver_test.go ├── lookup.go ├── lookup_test.go ├── renovate.json ├── rrset.go ├── run_tests.sh ├── signedzone.go └── testdata ├── TestForgedRRSIGHeader ├── 1_stakey.org.txt ├── 28_stakey.org.txt ├── 43_.txt ├── 43_org.txt ├── 43_stakey.org.txt ├── 48_.txt ├── 48_org.txt └── 48_stakey.org.txt ├── TestLookupAAAAOnly ├── 1_stakey.org.txt ├── 28_stakey.org.txt ├── 43_.txt ├── 43_org.txt ├── 43_stakey.org.txt ├── 48_.txt ├── 48_org.txt └── 48_stakey.org.txt ├── TestLookupInvalidAAAARRSIG ├── 1_stakey.org.txt ├── 28_stakey.org.txt ├── 43_.txt ├── 43_org.txt ├── 43_stakey.org.txt ├── 48_.txt ├── 48_org.txt └── 48_stakey.org.txt ├── TestLookupInvalidARRSIG ├── 1_stakey.org.txt ├── 28_stakey.org.txt ├── 43_.txt ├── 43_org.txt ├── 43_stakey.org.txt ├── 48_.txt ├── 48_org.txt └── 48_stakey.org.txt ├── TestLookupInvalidDnskeyRrsig ├── 1_stakey.org.txt ├── 28_stakey.org.txt ├── 43_.txt ├── 43_org.txt ├── 43_stakey.org.txt ├── 48_.txt ├── 48_org.txt └── 48_stakey.org.txt ├── TestLookupInvalidDsDigest ├── 1_testnet-seed.stakey.org.txt ├── 28_testnet-seed.stakey.org.txt ├── 43_.txt ├── 43_org.txt ├── 43_stakey.org.txt ├── 43_testnet-seed.stakey.org.txt ├── 48_.txt ├── 48_org.txt ├── 48_stakey.org.txt └── 48_testnet-seed.stakey.org.txt ├── TestLookupInvalidDsRrsig ├── 1_stakey.org.txt ├── 28_stakey.org.txt ├── 43_.txt ├── 43_org.txt ├── 43_stakey.org.txt ├── 48_.txt ├── 48_org.txt └── 48_stakey.org.txt ├── TestLookupMissingDnskey ├── 1_stakey.org.txt ├── 28_stakey.org.txt ├── 43_.txt ├── 43_org.txt ├── 43_stakey.org.txt ├── 48_.txt ├── 48_org.txt └── 48_stakey.org.txt ├── TestLookupMissingResource ├── 1_invalid.stakey.org.txt └── 28_invalid.stakey.org.txt ├── TestLookupResourceNotSigned ├── 1_google.com.txt └── 28_google.com.txt ├── TestLookupValid1 ├── 1_stakey.org.txt ├── 28_stakey.org.txt ├── 43_.txt ├── 43_org.txt ├── 43_stakey.org.txt ├── 48_.txt ├── 48_org.txt └── 48_stakey.org.txt ├── TestLookupValid2 ├── 1_testnet-seed.stakey.org.txt ├── 28_testnet-seed.stakey.org.txt ├── 43_.txt ├── 43_org.txt ├── 43_stakey.org.txt ├── 43_testnet-seed.stakey.org.txt ├── 48_.txt ├── 48_org.txt ├── 48_stakey.org.txt └── 48_testnet-seed.stakey.org.txt ├── TestLookupValid4 ├── 1_dnssec-deployment.org.txt ├── 28_dnssec-deployment.org.txt ├── 43_.txt ├── 43_dnssec-deployment.org.txt ├── 43_org.txt ├── 48_.txt ├── 48_dnssec-deployment.org.txt └── 48_org.txt ├── TestLookupValid5 ├── 1_ada.bortzmeyer.org.txt ├── 28_ada.bortzmeyer.org.txt ├── 43_.txt ├── 43_bortzmeyer.org.txt ├── 43_org.txt ├── 48_.txt ├── 48_bortzmeyer.org.txt └── 48_org.txt ├── TestMissingDsRR ├── 1_dnssec-deployment.org.txt ├── 28_dnssec-deployment.org.txt ├── 43_.txt ├── 43_dnssec-deployment.org.txt ├── 43_org.txt ├── 48_.txt ├── 48_dnssec-deployment.org.txt └── 48_org.txt ├── TestNonexistentName └── 16_non-existent-domain-34545345.org.txt ├── TestOnlyZskPresent ├── 15_froggle.org.txt ├── 43_.txt ├── 43_froggle.org.txt ├── 43_org.txt ├── 48_.txt ├── 48_froggle.org.txt └── 48_org.txt ├── TestStrictNSQuery ├── 16_bortzmeyer.org.txt ├── 43_.txt ├── 43_bortzmeyer.org.txt ├── 43_org.txt ├── 48_.txt ├── 48_bortzmeyer.org.txt └── 48_org.txt └── resolv.conf /.github/workflows/go-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/.github/workflows/go-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | go-resolver -------------------------------------------------------------------------------- /.idea/dictionaries/peter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/.idea/dictionaries/peter.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/goresolver.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/.idea/goresolver.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/README.md -------------------------------------------------------------------------------- /authchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/authchain.go -------------------------------------------------------------------------------- /coverage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/coverage.txt -------------------------------------------------------------------------------- /examples/mxlookup/mxlookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/examples/mxlookup/mxlookup.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/go.sum -------------------------------------------------------------------------------- /go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/go.test.sh -------------------------------------------------------------------------------- /goresolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/goresolver.go -------------------------------------------------------------------------------- /goresolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/goresolver_test.go -------------------------------------------------------------------------------- /lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/lookup.go -------------------------------------------------------------------------------- /lookup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/lookup_test.go -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/renovate.json -------------------------------------------------------------------------------- /rrset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/rrset.go -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/run_tests.sh -------------------------------------------------------------------------------- /signedzone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/signedzone.go -------------------------------------------------------------------------------- /testdata/TestForgedRRSIGHeader/1_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestForgedRRSIGHeader/1_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestForgedRRSIGHeader/28_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestForgedRRSIGHeader/28_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestForgedRRSIGHeader/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestForgedRRSIGHeader/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestForgedRRSIGHeader/43_org.txt -------------------------------------------------------------------------------- /testdata/TestForgedRRSIGHeader/43_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestForgedRRSIGHeader/43_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestForgedRRSIGHeader/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestForgedRRSIGHeader/48_.txt -------------------------------------------------------------------------------- /testdata/TestForgedRRSIGHeader/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestForgedRRSIGHeader/48_org.txt -------------------------------------------------------------------------------- /testdata/TestForgedRRSIGHeader/48_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestForgedRRSIGHeader/48_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupAAAAOnly/1_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupAAAAOnly/1_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupAAAAOnly/28_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupAAAAOnly/28_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupAAAAOnly/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestLookupAAAAOnly/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupAAAAOnly/43_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupAAAAOnly/43_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupAAAAOnly/43_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupAAAAOnly/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupAAAAOnly/48_.txt -------------------------------------------------------------------------------- /testdata/TestLookupAAAAOnly/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupAAAAOnly/48_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupAAAAOnly/48_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupAAAAOnly/48_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidAAAARRSIG/1_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidAAAARRSIG/1_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidAAAARRSIG/28_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidAAAARRSIG/28_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidAAAARRSIG/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestLookupInvalidAAAARRSIG/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidAAAARRSIG/43_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidAAAARRSIG/43_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidAAAARRSIG/43_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidAAAARRSIG/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidAAAARRSIG/48_.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidAAAARRSIG/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidAAAARRSIG/48_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidAAAARRSIG/48_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidAAAARRSIG/48_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidARRSIG/1_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidARRSIG/1_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidARRSIG/28_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidARRSIG/28_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidARRSIG/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestLookupInvalidARRSIG/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidARRSIG/43_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidARRSIG/43_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidARRSIG/43_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidARRSIG/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidARRSIG/48_.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidARRSIG/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidARRSIG/48_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidARRSIG/48_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidARRSIG/48_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDnskeyRrsig/1_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDnskeyRrsig/1_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDnskeyRrsig/28_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDnskeyRrsig/28_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDnskeyRrsig/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDnskeyRrsig/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDnskeyRrsig/43_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDnskeyRrsig/43_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDnskeyRrsig/43_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDnskeyRrsig/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDnskeyRrsig/48_.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDnskeyRrsig/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDnskeyRrsig/48_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDnskeyRrsig/48_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDnskeyRrsig/48_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsDigest/1_testnet-seed.stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsDigest/1_testnet-seed.stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsDigest/28_testnet-seed.stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsDigest/28_testnet-seed.stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsDigest/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsDigest/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsDigest/43_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsDigest/43_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsDigest/43_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsDigest/43_testnet-seed.stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsDigest/43_testnet-seed.stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsDigest/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsDigest/48_.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsDigest/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsDigest/48_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsDigest/48_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsDigest/48_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsDigest/48_testnet-seed.stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsDigest/48_testnet-seed.stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsRrsig/1_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsRrsig/1_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsRrsig/28_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsRrsig/28_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsRrsig/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsRrsig/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsRrsig/43_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsRrsig/43_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsRrsig/43_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsRrsig/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsRrsig/48_.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsRrsig/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsRrsig/48_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupInvalidDsRrsig/48_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupInvalidDsRrsig/48_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupMissingDnskey/1_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupMissingDnskey/1_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupMissingDnskey/28_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupMissingDnskey/28_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupMissingDnskey/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestLookupMissingDnskey/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupMissingDnskey/43_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupMissingDnskey/43_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupMissingDnskey/43_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupMissingDnskey/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupMissingDnskey/48_.txt -------------------------------------------------------------------------------- /testdata/TestLookupMissingDnskey/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupMissingDnskey/48_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupMissingDnskey/48_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupMissingDnskey/48_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupMissingResource/1_invalid.stakey.org.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestLookupMissingResource/28_invalid.stakey.org.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestLookupResourceNotSigned/1_google.com.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupResourceNotSigned/1_google.com.txt -------------------------------------------------------------------------------- /testdata/TestLookupResourceNotSigned/28_google.com.txt: -------------------------------------------------------------------------------- 1 | google.com. 228 IN AAAA 2a00:1450:4001:81f::200e -------------------------------------------------------------------------------- /testdata/TestLookupValid1/1_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid1/1_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid1/28_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid1/28_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid1/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestLookupValid1/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid1/43_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid1/43_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid1/43_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid1/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid1/48_.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid1/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid1/48_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid1/48_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid1/48_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid2/1_testnet-seed.stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid2/1_testnet-seed.stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid2/28_testnet-seed.stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid2/28_testnet-seed.stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid2/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestLookupValid2/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid2/43_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid2/43_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid2/43_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid2/43_testnet-seed.stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid2/43_testnet-seed.stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid2/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid2/48_.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid2/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid2/48_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid2/48_stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid2/48_stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid2/48_testnet-seed.stakey.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid2/48_testnet-seed.stakey.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid4/1_dnssec-deployment.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid4/1_dnssec-deployment.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid4/28_dnssec-deployment.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid4/28_dnssec-deployment.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid4/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestLookupValid4/43_dnssec-deployment.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid4/43_dnssec-deployment.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid4/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid4/43_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid4/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid4/48_.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid4/48_dnssec-deployment.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid4/48_dnssec-deployment.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid4/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid4/48_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid5/1_ada.bortzmeyer.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid5/1_ada.bortzmeyer.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid5/28_ada.bortzmeyer.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid5/28_ada.bortzmeyer.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid5/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestLookupValid5/43_bortzmeyer.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid5/43_bortzmeyer.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid5/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid5/43_org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid5/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid5/48_.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid5/48_bortzmeyer.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid5/48_bortzmeyer.org.txt -------------------------------------------------------------------------------- /testdata/TestLookupValid5/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestLookupValid5/48_org.txt -------------------------------------------------------------------------------- /testdata/TestMissingDsRR/1_dnssec-deployment.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestMissingDsRR/1_dnssec-deployment.org.txt -------------------------------------------------------------------------------- /testdata/TestMissingDsRR/28_dnssec-deployment.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestMissingDsRR/28_dnssec-deployment.org.txt -------------------------------------------------------------------------------- /testdata/TestMissingDsRR/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestMissingDsRR/43_dnssec-deployment.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestMissingDsRR/43_dnssec-deployment.org.txt -------------------------------------------------------------------------------- /testdata/TestMissingDsRR/43_org.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestMissingDsRR/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestMissingDsRR/48_.txt -------------------------------------------------------------------------------- /testdata/TestMissingDsRR/48_dnssec-deployment.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestMissingDsRR/48_dnssec-deployment.org.txt -------------------------------------------------------------------------------- /testdata/TestMissingDsRR/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestMissingDsRR/48_org.txt -------------------------------------------------------------------------------- /testdata/TestNonexistentName/16_non-existent-domain-34545345.org.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestOnlyZskPresent/15_froggle.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestOnlyZskPresent/15_froggle.org.txt -------------------------------------------------------------------------------- /testdata/TestOnlyZskPresent/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestOnlyZskPresent/43_froggle.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestOnlyZskPresent/43_froggle.org.txt -------------------------------------------------------------------------------- /testdata/TestOnlyZskPresent/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestOnlyZskPresent/43_org.txt -------------------------------------------------------------------------------- /testdata/TestOnlyZskPresent/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestOnlyZskPresent/48_.txt -------------------------------------------------------------------------------- /testdata/TestOnlyZskPresent/48_froggle.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestOnlyZskPresent/48_froggle.org.txt -------------------------------------------------------------------------------- /testdata/TestOnlyZskPresent/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestOnlyZskPresent/48_org.txt -------------------------------------------------------------------------------- /testdata/TestStrictNSQuery/16_bortzmeyer.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestStrictNSQuery/16_bortzmeyer.org.txt -------------------------------------------------------------------------------- /testdata/TestStrictNSQuery/43_.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/TestStrictNSQuery/43_bortzmeyer.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestStrictNSQuery/43_bortzmeyer.org.txt -------------------------------------------------------------------------------- /testdata/TestStrictNSQuery/43_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestStrictNSQuery/43_org.txt -------------------------------------------------------------------------------- /testdata/TestStrictNSQuery/48_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestStrictNSQuery/48_.txt -------------------------------------------------------------------------------- /testdata/TestStrictNSQuery/48_bortzmeyer.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestStrictNSQuery/48_bortzmeyer.org.txt -------------------------------------------------------------------------------- /testdata/TestStrictNSQuery/48_org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/TestStrictNSQuery/48_org.txt -------------------------------------------------------------------------------- /testdata/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterzen/goresolver/HEAD/testdata/resolv.conf --------------------------------------------------------------------------------