You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There appears to be an issue in the cs531a4: test_correct_realm_authorized. No matter what I changed, I could not seem to get the right hash. I decided to look at the source code of the tester itself that you have on your GitHub, and looking at line 21, a1 is generated using the string "mln:Colonial Place:mln".
Assuming that last field there, mln is supposed to be the password, the password supplied in our WeMustProtectThisHouse! file says the password is 53bbb5135e0f39c1eb54804a66a95f08. If I changed my a1 to hardcode the string value that I found in the source of the HttpTester it works fine.
Is this just a small mistake? Or am I misunderstanding how we grab the password?
Thanks a ton,
David
The text was updated successfully, but these errors were encountered:
Unlike the basic auth, in digest auth we store hash of <username>:<realm>:<password> in the config file not the has of the password. We discussed last week's lecture while revisiting assignment 4 and Auth lecture slides.
Hello,
There appears to be an issue in the
cs531a4: test_correct_realm_authorized
. No matter what I changed, I could not seem to get the right hash. I decided to look at the source code of the tester itself that you have on your GitHub, and looking at line 21, a1 is generated using the string "mln:Colonial Place:mln".Assuming that last field there,
mln
is supposed to be the password, the password supplied in ourWeMustProtectThisHouse!
file says the password is53bbb5135e0f39c1eb54804a66a95f08
. If I changed my a1 to hardcode the string value that I found in the source of the HttpTester it works fine.Is this just a small mistake? Or am I misunderstanding how we grab the password?
Thanks a ton,
David
The text was updated successfully, but these errors were encountered: