Lines Matching refs:md5ctx

679 				PHP_MD5_CTX   md5ctx;  in make_http_soap_request()  local
705 PHP_MD5Init(&md5ctx); in make_http_soap_request()
706 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(login), Z_STRLEN_P(login)); in make_http_soap_request()
707 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
710 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(tmp), Z_STRLEN_P(tmp)); in make_http_soap_request()
712 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
715 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(password), Z_STRLEN_P(password)); in make_http_soap_request()
717 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
723 PHP_MD5Init(&md5ctx); in make_http_soap_request()
724 PHP_MD5Update(&md5ctx, (unsigned char*)HA1, 32); in make_http_soap_request()
725 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
728 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(tmp), Z_STRLEN_P(tmp)); in make_http_soap_request()
730 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
731 PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, 8); in make_http_soap_request()
732 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
736 PHP_MD5Init(&md5ctx); in make_http_soap_request()
737 PHP_MD5Update(&md5ctx, (unsigned char*)"POST:", sizeof("POST:")-1); in make_http_soap_request()
739 PHP_MD5Update(&md5ctx, (unsigned char*)ZSTR_VAL(phpurl->path), ZSTR_LEN(phpurl->path)); in make_http_soap_request()
741 PHP_MD5Update(&md5ctx, (unsigned char*)"/", 1); in make_http_soap_request()
744 PHP_MD5Update(&md5ctx, (unsigned char*)"?", 1); in make_http_soap_request()
745 PHP_MD5Update(&md5ctx, (unsigned char*)ZSTR_VAL(phpurl->query), ZSTR_LEN(phpurl->query)); in make_http_soap_request()
748 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
751 PHP_MD5Init(&md5ctx); in make_http_soap_request()
752 PHP_MD5Update(&md5ctx, (unsigned char*)HA1, 32); in make_http_soap_request()
753 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
756 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(tmp), Z_STRLEN_P(tmp)); in make_http_soap_request()
758 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
761 PHP_MD5Update(&md5ctx, (unsigned char*)nc, 8); in make_http_soap_request()
762 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
763 PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, 8); in make_http_soap_request()
764 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
766 PHP_MD5Update(&md5ctx, (unsigned char*)"auth", sizeof("auth")-1); in make_http_soap_request()
767 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
769 PHP_MD5Update(&md5ctx, (unsigned char*)HA2, 32); in make_http_soap_request()
770 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()