Lines Matching refs:md5ctx

571 					PHP_MD5_CTX   md5ctx;  in make_http_soap_request()  local
574 PHP_MD5Init(&md5ctx); in make_http_soap_request()
576 PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, strlen(cnonce)); in make_http_soap_request()
577 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
589 PHP_MD5Init(&md5ctx); in make_http_soap_request()
590 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_PP(login), Z_STRLEN_PP(login)); in make_http_soap_request()
591 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
594 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp)); in make_http_soap_request()
596 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
599 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_PP(password), Z_STRLEN_PP(password)); in make_http_soap_request()
601 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
607 PHP_MD5Init(&md5ctx); in make_http_soap_request()
608 PHP_MD5Update(&md5ctx, (unsigned char*)HA1, 32); in make_http_soap_request()
609 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
612 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp)); in make_http_soap_request()
614 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
615 PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, 8); in make_http_soap_request()
616 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
620 PHP_MD5Init(&md5ctx); in make_http_soap_request()
621 PHP_MD5Update(&md5ctx, (unsigned char*)"POST:", sizeof("POST:")-1); in make_http_soap_request()
623 PHP_MD5Update(&md5ctx, (unsigned char*)phpurl->path, strlen(phpurl->path)); in make_http_soap_request()
625 PHP_MD5Update(&md5ctx, (unsigned char*)"/", 1); in make_http_soap_request()
628 PHP_MD5Update(&md5ctx, (unsigned char*)"?", 1); in make_http_soap_request()
629 PHP_MD5Update(&md5ctx, (unsigned char*)phpurl->query, strlen(phpurl->query)); in make_http_soap_request()
642 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
645 PHP_MD5Init(&md5ctx); in make_http_soap_request()
646 PHP_MD5Update(&md5ctx, (unsigned char*)HA1, 32); in make_http_soap_request()
647 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
650 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp)); in make_http_soap_request()
652 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
655 PHP_MD5Update(&md5ctx, (unsigned char*)nc, 8); in make_http_soap_request()
656 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
657 PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, 8); in make_http_soap_request()
658 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
660 PHP_MD5Update(&md5ctx, (unsigned char*)"auth", sizeof("auth")-1); in make_http_soap_request()
661 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
663 PHP_MD5Update(&md5ctx, (unsigned char*)HA2, 32); in make_http_soap_request()
664 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()