| Crates.io | str0m-openssl |
| lib.rs | str0m-openssl |
| version | 0.1.3 |
| created_at | 2025-12-17 09:59:40.080098+00 |
| updated_at | 2026-01-09 16:16:11.171282+00 |
| description | OpenSSL backend for str0m WebRTC |
| homepage | |
| repository | https://github.com/algesten/str0m |
| max_upload_size | |
| id | 1989883 |
| size | 52,598 |
OpenSSL backend for str0m.
The primary way to use this backend is via the openssl feature flag in str0m:
[dependencies]
str0m = { version = "0.14", default-features = false, features = ["openssl"] }
For advanced use cases, you can use this crate directly without enabling the feature flag:
use str0m::Rtc;
use std::sync::Arc;
// Set as process-wide default
str0m_openssl::default_provider().install_process_default();
// Or configure per-instance
let rtc = Rtc::builder()
.set_crypto_provider(Arc::new(str0m_openssl::default_provider()))
.build();