pub trait GenericSecurityService {
// Required methods
fn gss_wrapex(&mut self, data: &[u8]) -> RdpResult<Vec<u8>>;
fn gss_unwrapex(&mut self, data: &[u8]) -> RdpResult<Vec<u8>>;
}
Expand description
This is a trait use by authentication protocol to provide a context abstract for CSSP