计算HTTP摘要

我只是试图计算一个HTTP摘要authentication的响应。 想象一下RFC2617的例子。 我提取了follingvariables:

USER="Mufasa" REALM="[email protected]" PASS="Circle Of Life" METHOD="GET" URI="/dir/index.html" NONCE="dcd98b7102dd2f0e8b11d0f600bfb0c093" 

我为这个工具input了这个variables:

  • http://pernau.at/kd/sipdigest.php?qop=none&user=Mufasa&realm=testrealm%40host.com&password=Circle+Of+Life&method=GET&uri=%2Fdir%2Findex.html&nonce=dcd98b7102dd2f0e8b11d0f600bfb0c093&body=&noncecount=&cnonce=

该工具(以及我的程序)计算响应670fd8c2df070c60b045671b8b24ff02 ,而RFC中的响应是6629fae49393a05397450978507c4ef1

我究竟做错了什么? 我想念什么?