Lines Matching refs:md5ctx
649 PHP_MD5_CTX md5ctx; in make_http_soap_request() local
652 PHP_MD5Init(&md5ctx); in make_http_soap_request()
654 PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, strlen(cnonce)); in make_http_soap_request()
655 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
667 PHP_MD5Init(&md5ctx); in make_http_soap_request()
668 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(login), Z_STRLEN_P(login)); in make_http_soap_request()
669 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
672 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(tmp), Z_STRLEN_P(tmp)); in make_http_soap_request()
674 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
677 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(password), Z_STRLEN_P(password)); in make_http_soap_request()
679 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
685 PHP_MD5Init(&md5ctx); in make_http_soap_request()
686 PHP_MD5Update(&md5ctx, (unsigned char*)HA1, 32); in make_http_soap_request()
687 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
690 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(tmp), Z_STRLEN_P(tmp)); in make_http_soap_request()
692 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
693 PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, 8); in make_http_soap_request()
694 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
698 PHP_MD5Init(&md5ctx); in make_http_soap_request()
699 PHP_MD5Update(&md5ctx, (unsigned char*)"POST:", sizeof("POST:")-1); in make_http_soap_request()
701 PHP_MD5Update(&md5ctx, (unsigned char*)phpurl->path, strlen(phpurl->path)); in make_http_soap_request()
703 PHP_MD5Update(&md5ctx, (unsigned char*)"/", 1); in make_http_soap_request()
706 PHP_MD5Update(&md5ctx, (unsigned char*)"?", 1); in make_http_soap_request()
707 PHP_MD5Update(&md5ctx, (unsigned char*)phpurl->query, strlen(phpurl->query)); in make_http_soap_request()
710 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
713 PHP_MD5Init(&md5ctx); in make_http_soap_request()
714 PHP_MD5Update(&md5ctx, (unsigned char*)HA1, 32); in make_http_soap_request()
715 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
718 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(tmp), Z_STRLEN_P(tmp)); in make_http_soap_request()
720 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
723 PHP_MD5Update(&md5ctx, (unsigned char*)nc, 8); in make_http_soap_request()
724 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
725 PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, 8); in make_http_soap_request()
726 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
728 PHP_MD5Update(&md5ctx, (unsigned char*)"auth", sizeof("auth")-1); in make_http_soap_request()
729 PHP_MD5Update(&md5ctx, (unsigned char*)":", 1); in make_http_soap_request()
731 PHP_MD5Update(&md5ctx, (unsigned char*)HA2, 32); in make_http_soap_request()
732 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()