Skip to content
This repository was archived by the owner on May 21, 2023. It is now read-only.

Commit a37565d

Browse files
authored
Update Main.cs
1 parent bac960e commit a37565d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

NetShield Protector/Main.cs

Lines 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)