Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on May 21, 2023. It is now read-only.

Commit a37565d

Browse filesBrowse files
authored
Update Main.cs
1 parent bac960e commit a37565d
Copy full SHA for a37565d

1 file changed

+2-2Lines changed: 2 additions & 2 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎NetShield Protector/Main.cs‎

Copy file name to clipboardExpand all lines: NetShield Protector/Main.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ private string XOREncryptionKeys(string KeyToEncrypt, string Key)
6060
{
6161
StringBuilder DecryptEncryptionKey = new StringBuilder();
6262
for (int c = 0; c < KeyToEncrypt.Length; c++)
63-
DecryptEncryptionKey.Append((char)((uint)KeyToEncrypt[c] ^ (uint)Key.Replace("A", "B").Replace("C", "P")[c % 4]));
63+
DecryptEncryptionKey.Append((char)((uint)KeyToEncrypt[c] ^ (uint)Key[c % 4]));
6464
return DecryptEncryptionKey.ToString();
6565
}
6666

@@ -725,4 +725,4 @@ private void checkBox12_MouseHover(object sender, EventArgs e)
725725
ShowInfo.SetToolTip(checkBox12, "Encrypting Your .NET Executable Inside of another one that will gonna be decrypted in memory, but keep in mind that this are not AV Friendly.");
726726
}
727727
}
728-
}
728+
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.