rvoip-sip 0.2.1

SIP umbrella for RVoIP: api/* (UnifiedCoordinator, StreamPeer, CallbackPeer, Endpoint), server/* (B2BUA helpers), adapter/* (rvoip-core::ConnectionAdapter impl)
Documentation
1
2
3
4
5
6
7
8
9
//! Authentication module for rvoip-sip
//!
//! Re-exports SIP Digest authentication from auth-core.
//! This follows SIP industry best practices where authentication is a shared module.

// Re-export client-side digest authentication from auth-core
pub use rvoip_auth_core::{
    DigestAlgorithm, DigestChallenge, DigestClient as DigestAuth, DigestComputed,
};