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

◆ HA1()

string System.Net.DigestSession.HA1 ( string username,
string password )
inlineprivate

Definition at line 222 of file DigestSession.cs.

223 {
224 string[] values = this.parser.values;
225 string text = string.Format("{0}:{1}:{2}", username, password, password);
226 string[] values2 = this.parser.values;
227 string text3;
228 if (values2 != null)
229 {
230 bool flag = values2.ToLower() == "md5-sess";
231 string text2 = this.HashToHexString(text);
232 string[] values3 = this.parser.values;
233 string cnonce = this.CNonce;
234 text3 = string.Format("{0}:{1}:{2}", text2, text, cnonce);
235 }
236 return this.HashToHexString(text3);
237 }
class f__AnonymousType0<< Count > j__TPar
DigestHeaderParser parser
string HashToHexString(string toBeHashed)

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

Referenced by System.Net.DigestSession.Response().