Searched defs:authencstr (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/common/net/wanboot/
H A Dboot_http.c1652 * "Authorization: Basic " + authencstr + "\r\n"
1656 char *authencstr; local
1673 if ((authencstr = malloc((authlen + 2) / 3 * 4 + 1)) == NULL) {
1680 (void) EVP_EncodeBlock((unsigned char *)authencstr,
1684 * Finally do concat(Authorization: Basic " authencstr "\r\n")
1686 requestlen += 21 + strlen(authencstr) + 2;
1688 free(authencstr);
1697 "Authorization: Basic %s\r\n", authencstr);
1699 free(authencstr);

Completed in 108 milliseconds