├── .gitignore ├── BUILD ├── CONTRIBUTING.md ├── LICENSE ├── MODULE.bazel ├── README.md ├── Source └── MOLAuthenticatingURLSession │ ├── MOLAuthenticatingURLSession.h │ ├── MOLAuthenticatingURLSession.m │ ├── MOLDERDecoder.h │ └── MOLDERDecoder.m └── Tests ├── MOLAuthenticatingURLSessionTest.m ├── MOLDERDecoderTest.m ├── dn.plist ├── example_org_client_cert.pem ├── example_org_client_cert_old.pem └── internet_widgits_client_cert.pem /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/BUILD -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/README.md -------------------------------------------------------------------------------- /Source/MOLAuthenticatingURLSession/MOLAuthenticatingURLSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/Source/MOLAuthenticatingURLSession/MOLAuthenticatingURLSession.h -------------------------------------------------------------------------------- /Source/MOLAuthenticatingURLSession/MOLAuthenticatingURLSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/Source/MOLAuthenticatingURLSession/MOLAuthenticatingURLSession.m -------------------------------------------------------------------------------- /Source/MOLAuthenticatingURLSession/MOLDERDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/Source/MOLAuthenticatingURLSession/MOLDERDecoder.h -------------------------------------------------------------------------------- /Source/MOLAuthenticatingURLSession/MOLDERDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/Source/MOLAuthenticatingURLSession/MOLDERDecoder.m -------------------------------------------------------------------------------- /Tests/MOLAuthenticatingURLSessionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/Tests/MOLAuthenticatingURLSessionTest.m -------------------------------------------------------------------------------- /Tests/MOLDERDecoderTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/Tests/MOLDERDecoderTest.m -------------------------------------------------------------------------------- /Tests/dn.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/Tests/dn.plist -------------------------------------------------------------------------------- /Tests/example_org_client_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/Tests/example_org_client_cert.pem -------------------------------------------------------------------------------- /Tests/example_org_client_cert_old.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/Tests/example_org_client_cert_old.pem -------------------------------------------------------------------------------- /Tests/internet_widgits_client_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/macops-MOLAuthenticatingURLSession/HEAD/Tests/internet_widgits_client_cert.pem --------------------------------------------------------------------------------