auth             1942 http/ngx_http_core_module.c     ngx_str_t   auth, encoded;
auth             1978 http/ngx_http_core_module.c     auth.len = ngx_base64_decoded_length(encoded.len);
auth             1979 http/ngx_http_core_module.c     auth.data = ngx_pnalloc(r->pool, auth.len + 1);
auth             1980 http/ngx_http_core_module.c     if (auth.data == NULL) {
auth             1984 http/ngx_http_core_module.c     if (ngx_decode_base64(&auth, &encoded) != NGX_OK) {
auth             1989 http/ngx_http_core_module.c     auth.data[auth.len] = '\0';
auth             1991 http/ngx_http_core_module.c     for (len = 0; len < auth.len; len++) {
auth             1992 http/ngx_http_core_module.c         if (auth.data[len] == ':') {
auth             1997 http/ngx_http_core_module.c     if (len == 0 || len == auth.len) {
auth             2003 http/ngx_http_core_module.c     r->headers_in.user.data = auth.data;
auth             2004 http/ngx_http_core_module.c     r->headers_in.passwd.len = auth.len - len - 1;
auth             2005 http/ngx_http_core_module.c     r->headers_in.passwd.data = &auth.data[len + 1];
auth              140 mail/ngx_mail_imap_module.c     u_char      *p, *auth;
auth              202 mail/ngx_mail_imap_module.c     auth = p;
auth              234 mail/ngx_mail_imap_module.c     size = (auth - conf->capability.data) + sizeof(CRLF) - 1
auth              246 mail/ngx_mail_imap_module.c                    auth - conf->capability.data);
auth              141 mail/ngx_mail_smtp_module.c     u_char                    *p, *auth, *last;
auth              241 mail/ngx_mail_smtp_module.c     auth = p;
auth              285 mail/ngx_mail_smtp_module.c     size = (auth - conf->capability.data)
auth              296 mail/ngx_mail_smtp_module.c     p = ngx_cpymem(p, conf->capability.data, auth - conf->capability.data);
auth              300 mail/ngx_mail_smtp_module.c     if (last < auth) {