├── .github ├── dependabot.yml └── workflows │ ├── rust.yml │ └── smoke-tests.yaml ├── .gitignore ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-ISC ├── LICENSE-MIT ├── README.md ├── RELEASING.md ├── examples ├── google.rs └── print-trust-anchors.rs ├── integration-tests ├── macos.sh └── one-existing-ca.pem ├── rustfmt.toml ├── src ├── lib.rs ├── macos.rs ├── unix.rs └── windows.rs └── tests ├── badssl-com-chain.pem ├── common └── mod.rs ├── compare_mozilla.rs └── smoketests.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/.github/workflows/smoke-tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-ISC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/LICENSE-ISC -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/RELEASING.md -------------------------------------------------------------------------------- /examples/google.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/examples/google.rs -------------------------------------------------------------------------------- /examples/print-trust-anchors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/examples/print-trust-anchors.rs -------------------------------------------------------------------------------- /integration-tests/macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/integration-tests/macos.sh -------------------------------------------------------------------------------- /integration-tests/one-existing-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/integration-tests/one-existing-ca.pem -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | chain_width=40 2 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/macos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/src/macos.rs -------------------------------------------------------------------------------- /src/unix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/src/unix.rs -------------------------------------------------------------------------------- /src/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/src/windows.rs -------------------------------------------------------------------------------- /tests/badssl-com-chain.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/tests/badssl-com-chain.pem -------------------------------------------------------------------------------- /tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/tests/common/mod.rs -------------------------------------------------------------------------------- /tests/compare_mozilla.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/tests/compare_mozilla.rs -------------------------------------------------------------------------------- /tests/smoketests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustls/rustls-native-certs/HEAD/tests/smoketests.rs --------------------------------------------------------------------------------