[][src]Trait winauth::NextBytes

pub trait NextBytes {
    fn next_bytes(&mut self, bytes: Option<&[u8]>) -> Result<Option<Vec<u8>>>;
}

Required methods

fn next_bytes(&mut self, bytes: Option<&[u8]>) -> Result<Option<Vec<u8>>>

Loading content...

Implementors

impl<'a> NextBytes for NtlmV2Client<'a>[src]

fn next_bytes(&mut self, bytes: Option<&[u8]>) -> Result<Option<Vec<u8>>>[src]

This returns the next bytes which have to be sent to the server.
The authentication is complete, when this returns None

Loading content...