https://github.com/HowNetWorks/trytls-rustls-stub
A Rustls stub for TryTLS
https://github.com/HowNetWorks/trytls-rustls-stub
rust tls trytls
Last synced: 11 months ago
JSON representation
A Rustls stub for TryTLS
- Host: GitHub
- URL: https://github.com/HowNetWorks/trytls-rustls-stub
- Owner: HowNetWorks
- License: apache-2.0
- Archived: true
- Created: 2016-09-01T18:18:29.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-28T10:27:15.000Z (over 8 years ago)
- Last Synced: 2024-10-23T20:11:43.386Z (over 1 year ago)
- Topics: rust, tls, trytls
- Language: Rust
- Size: 10.7 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# A Rustls stub for TryTLS
A small program for testing [Rustls](https://github.com/ctz/rustls) (an embryonic Rust TLS library) with [TryTLS](https://github.com/ouspg/trytls) (a TLS implementation testing tool).
## Prerequisites
Install Rust toolchain from the [Rust home page](https://www.rust-lang.org/). Another option is to use your package manager of choice, such as Homebrew on OS X:
```sh
$ brew install rust
```
Install TryTLS following the instructions at the TryTLS [project repository page](https://github.com/ouspg/trytls#installation). This requires Python 2.7.9+ or 3.4+:
```sh
$ pip install trytls
```
## Running the Tests
```sh
$ trytls https cargo run --quiet
```
## License
Like Rustls, this project is triple-licensed. You can use this software under
any of these three licenses:
* MIT license (see [`LICENSE-MIT`](./LICENSE-MIT))
* ISC license (see [`LICENSE-ISC`](./LICENSE-ISC))
* Apache License, Version 2.0 (see [`LICENSE-APACHE`](./LICENSE-APACHE))