Lines Matching refs:PHP_MD5Update

658 					PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, strlen(cnonce));  in make_http_soap_request()
672 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(login), Z_STRLEN_P(login)); in make_http_soap_request()
673 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
676 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(tmp), Z_STRLEN_P(tmp)); 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_P(password), Z_STRLEN_P(password)); in make_http_soap_request()
690 PHP_MD5Update(&md5ctx, (unsigned char*)HA1, 32); in make_http_soap_request()
691 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
694 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(tmp), Z_STRLEN_P(tmp)); in make_http_soap_request()
696 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
697 PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, 8); in make_http_soap_request()
703 PHP_MD5Update(&md5ctx, (unsigned char*)"POST:", sizeof("POST:")-1); in make_http_soap_request()
705 PHP_MD5Update(&md5ctx, (unsigned char*)phpurl->path, strlen(phpurl->path)); in make_http_soap_request()
707 PHP_MD5Update(&md5ctx, (unsigned char*)"/", 1); in make_http_soap_request()
710 PHP_MD5Update(&md5ctx, (unsigned char*)"?", 1); in make_http_soap_request()
711 PHP_MD5Update(&md5ctx, (unsigned char*)phpurl->query, strlen(phpurl->query)); in make_http_soap_request()
718 PHP_MD5Update(&md5ctx, (unsigned char*)HA1, 32); in make_http_soap_request()
719 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
722 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(tmp), Z_STRLEN_P(tmp)); in make_http_soap_request()
724 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
727 PHP_MD5Update(&md5ctx, (unsigned char*)nc, 8); in make_http_soap_request()
728 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
729 PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, 8); in make_http_soap_request()
730 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
732 PHP_MD5Update(&md5ctx, (unsigned char*)"auth", sizeof("auth")-1); in make_http_soap_request()
733 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
735 PHP_MD5Update(&md5ctx, (unsigned char*)HA2, 32); in make_http_soap_request()