Searched refs:authorization_decoded (Results 1 – 2 of 2) sorted by relevance
/NetX-Duo-v6.4.1/addons/http/ |
D | nxd_http_server.c | 66 static CHAR authorization_decoded[NX_HTTP_MAX_NAME + NX_HTTP_MAX_PASSWORD + 2]; variable 4848 memset(&authorization_decoded[0], 0, sizeof(authorization_decoded)); in _nx_http_server_basic_authenticate() 4859 …e((UCHAR *)authorization_request, length, (UCHAR *)authorization_decoded, sizeof(authorization_dec… in _nx_http_server_basic_authenticate() 4870 if (name_ptr[i] != authorization_decoded[i]) in _nx_http_server_basic_authenticate() 4882 if (match && (i < authorization_decoded_size) && (authorization_decoded[i] == ':')) in _nx_http_server_basic_authenticate() 4895 if (password_ptr[j] != authorization_decoded[i]) in _nx_http_server_basic_authenticate() 4909 (authorization_decoded[i] == (CHAR) NX_NULL) && in _nx_http_server_basic_authenticate()
|
/NetX-Duo-v6.4.1/addons/web/ |
D | nx_web_http_server.c | 72 static CHAR authorization_decoded[NX_WEB_HTTP_MAX_NAME + NX_WEB_HTTP_MAX_PASSWORD + 2]; variable 5235 memset(&authorization_decoded[0], 0, sizeof(authorization_decoded)); in _nx_web_http_server_basic_authenticate() 5246 …e((UCHAR *)authorization_request, length, (UCHAR *)authorization_decoded, sizeof(authorization_dec… in _nx_web_http_server_basic_authenticate() 5257 if (name_ptr[i] != authorization_decoded[i]) in _nx_web_http_server_basic_authenticate() 5269 if (match && (i < authorization_decoded_size) && (authorization_decoded[i] == ':')) in _nx_web_http_server_basic_authenticate() 5282 if (password_ptr[j] != authorization_decoded[i]) in _nx_web_http_server_basic_authenticate() 5296 (authorization_decoded[i] == (CHAR) NX_NULL) && in _nx_web_http_server_basic_authenticate()
|