├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── channel.rs ├── ciphersuite.rs ├── handshake.rs ├── packetio.rs ├── tls.rc ├── util.rs └── version.rs /.gitignore: -------------------------------------------------------------------------------- 1 | libtls-*.so 2 | tls 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/rust-tls/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/rust-tls/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/rust-tls/HEAD/README.md -------------------------------------------------------------------------------- /channel.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ciphersuite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/rust-tls/HEAD/ciphersuite.rs -------------------------------------------------------------------------------- /handshake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/rust-tls/HEAD/handshake.rs -------------------------------------------------------------------------------- /packetio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/rust-tls/HEAD/packetio.rs -------------------------------------------------------------------------------- /tls.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/rust-tls/HEAD/tls.rc -------------------------------------------------------------------------------- /util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/rust-tls/HEAD/util.rs -------------------------------------------------------------------------------- /version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/rust-tls/HEAD/version.rs --------------------------------------------------------------------------------