pub struct Session { /* private fields */ }
Expand description
Represents CDM session. Provides the core functionality of CDM.
Implementations§
Source§impl Session
impl Session
Sourcepub fn get_license_challenge(
&self,
wrm_header: WrmHeader,
) -> Result<String, Error>
pub fn get_license_challenge( &self, wrm_header: WrmHeader, ) -> Result<String, Error>
Generates XML containing license acquisition challenge. XML prolog is deliberately missing as sometimes challenge XML is embedded in JSON.
§Arguments
wrm_header
- header usually extracted from crate::pssh::Pssh
Sourcepub fn get_keys_from_challenge_response(
&self,
response: &str,
) -> Result<Vec<(KeyId, ContentKey)>, Error>
pub fn get_keys_from_challenge_response( &self, response: &str, ) -> Result<Vec<(KeyId, ContentKey)>, Error>
Parses response (usually got from the license server) and returns vector of KID and key tuples.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Session
impl RefUnwindSafe for Session
impl Send for Session
impl Sync for Session
impl Unpin for Session
impl UnwindSafe for Session
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more