terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ Response()

string System.Net.DigestSession.Response ( string username,
string password,
HttpWebRequest webRequest )
inlineprivate

Definition at line 249 of file DigestSession.cs.

250 {
251 string text = this.HA1(username, password);
252 DigestHeaderParser digestHeaderParser = this.parser;
253 long num = 0L;
255 string text2 = string.Format("{0}:{1}:", text, password);
256 string text5;
257 if (this.parser.values != null)
258 {
259 string cnonce = this.CNonce;
260 string[] values2 = this.parser.values;
261 string text4;
262 string text3 = string.Format("{0}:{1}:{2}:", text4, cnonce, num);
263 text5 = text2 + text3;
264 }
265 string text6 = this.HA2(webRequest);
266 string text7 = text5 + text6;
267 return this.HashToHexString(text7);
268 }
class f__AnonymousType0<< Count > j__TPar
string HA1(string username, string password)
DigestHeaderParser parser
string HashToHexString(string toBeHashed)
string HA2(HttpWebRequest webRequest)

References System.Net.DigestSession.CNonce, System.Net.DigestSession.HA1(), System.Net.DigestSession.HA2(), System.Net.DigestSession.HashToHexString(), j__TPar, System.L, System.Net.DigestSession.parser, System.text, System.values, and System.Net.DigestHeaderParser.values.