pub fn authenticate_data(input: &[u8]) -> IResult<&[u8], Vec<u8>>
Expand description

authenticate = "AUTHENTICATE" SP auth-type *(CRLF base64) (edited)

authenticate = base64 CRLF
               vvvvvvvvvvvv
               |
               This is parsed here.
               CRLF is additionally parsed in this parser.
               FIXME: Multiline base64 currently does not work.