str0m-rust-crypto
Pure Rust crypto backend for str0m.
Usage
The primary way to use this backend is via the rust-crypto feature flag in str0m:
[]
= { = "0.14", = false, = ["rust-crypto"] }
Advanced: Direct usage
For advanced use cases, you can use this crate directly without enabling the feature flag:
use Rtc;
use Arc;
// Set as process-wide default
default_provider.install_process_default;
// Or configure per-instance
let rtc = builder
.set_crypto_provider
.build;