├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src └── lib.rs └── test ├── identity.p12 ├── root-ca.der └── root-ca.pem /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | .idea 4 | *.iml 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/hyper-native-tls/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/hyper-native-tls/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/hyper-native-tls/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/hyper-native-tls/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/hyper-native-tls/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/hyper-native-tls/HEAD/src/lib.rs -------------------------------------------------------------------------------- /test/identity.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/hyper-native-tls/HEAD/test/identity.p12 -------------------------------------------------------------------------------- /test/root-ca.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/hyper-native-tls/HEAD/test/root-ca.der -------------------------------------------------------------------------------- /test/root-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfackler/hyper-native-tls/HEAD/test/root-ca.pem --------------------------------------------------------------------------------