Trait webrtc_srtp::config::KeyingMaterialExporter[][src]

pub trait KeyingMaterialExporter {
    fn export_keying_material(
        &self,
        label: String,
        context: &[u8],
        length: usize
    ) -> Result<Vec<u8>, Error>; }
Expand description

KeyingMaterialExporter allows package SRTP to extract keying material

Required methods

fn export_keying_material(
    &self,
    label: String,
    context: &[u8],
    length: usize
) -> Result<Vec<u8>, Error>
[src]

Implementors