星星上线

This commit is contained in:
“wanyongkang”
2021-02-23 10:45:22 +08:00
parent 43581dc9cc
commit 57ea927418
3 changed files with 447 additions and 1 deletions

View File

@@ -67,7 +67,7 @@ namespace Hncore.Pass.Vpn.Service
}
public virtual string MD5(string password) {
byte[] textBytes = System.Text.Encoding.Default.GetBytes(password);
byte[] textBytes = System.Text.Encoding.Default.GetBytes(password);
try {
System.Security.Cryptography.MD5CryptoServiceProvider cryptHandler;
cryptHandler = new System.Security.Cryptography.MD5CryptoServiceProvider();
@@ -84,6 +84,7 @@ namespace Hncore.Pass.Vpn.Service
catch {
throw;
}
}
protected virtual void AddCookie(HttpClient client, string cookie)