Lines Matching refs:PHP_MD5Update
645 PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, strlen(cnonce)); in make_http_soap_request()
659 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_PP(login), Z_STRLEN_PP(login)); in make_http_soap_request()
660 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
663 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp)); in make_http_soap_request()
665 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
668 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_PP(password), Z_STRLEN_PP(password)); in make_http_soap_request()
677 PHP_MD5Update(&md5ctx, (unsigned char*)HA1, 32); in make_http_soap_request()
678 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
681 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp)); in make_http_soap_request()
683 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
684 PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, 8); in make_http_soap_request()
690 PHP_MD5Update(&md5ctx, (unsigned char*)"POST:", sizeof("POST:")-1); in make_http_soap_request()
692 PHP_MD5Update(&md5ctx, (unsigned char*)phpurl->path, strlen(phpurl->path)); in make_http_soap_request()
694 PHP_MD5Update(&md5ctx, (unsigned char*)"/", 1); in make_http_soap_request()
697 PHP_MD5Update(&md5ctx, (unsigned char*)"?", 1); in make_http_soap_request()
698 PHP_MD5Update(&md5ctx, (unsigned char*)phpurl->query, strlen(phpurl->query)); in make_http_soap_request()
715 PHP_MD5Update(&md5ctx, (unsigned char*)HA1, 32); in make_http_soap_request()
716 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
719 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp)); in make_http_soap_request()
721 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
724 PHP_MD5Update(&md5ctx, (unsigned char*)nc, 8); in make_http_soap_request()
725 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
726 PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, 8); in make_http_soap_request()
727 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
729 PHP_MD5Update(&md5ctx, (unsigned char*)"auth", sizeof("auth")-1); in make_http_soap_request()
730 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
732 PHP_MD5Update(&md5ctx, (unsigned char*)HA2, 32); in make_http_soap_request()