Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prisma/opentls
TLS connections for Rust using OpenSSL
https://github.com/prisma/opentls
Last synced: about 2 months ago
JSON representation
TLS connections for Rust using OpenSSL
- Host: GitHub
- URL: https://github.com/prisma/opentls
- Owner: prisma
- License: apache-2.0
- Created: 2021-01-07T16:46:17.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-06T21:36:28.000Z (almost 4 years ago)
- Last Synced: 2024-04-23T18:14:37.445Z (8 months ago)
- Language: Rust
- Homepage:
- Size: 74.2 KB
- Stars: 6
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE-APACHE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
opentls
Sync and async TLS streams using OpenSSL
## About
Implementing TLS with OpenSSL either asynchronously or as a synchronous version.
If looking for a good TLS implementation, it is highly recommended to use either
[native-tls](https://crates.io/crates/native-tls) for synchronous connections or
[async-native-tls](https://crates.io/crates/async-native-tls). Use this crate
only if you cannot rely on the libraries provided by the operating system, and
have some special needs such as always linking to OpenSSL statically. In
general, you probably should not use this crate.The API is taken directly from the crates mentioned above, so opentls `sync_io`
module should be a drop-in replacement to `native-tls` and `async_io` to
`async-native-tls` accordingly. Big thanks for the authors Steven Fackler and
dignifiedquire.## Installation for Rust
```sh
$ cargo add opentls
```## Security
If you have a security issue to report, please contact us at [[email protected]](mailto:[email protected]?subject=[GitHub]%20Prisma%202%20Security%20Report%20Tiberius)