This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Subscribe to my YouTube Channel -> https://lokjianming.page.link/CVLm # | |
| How to Crack Sublime Text 3 with Hex Editor | |
| 1. Download & Install Sublime Text 3.2.2 Build 3211 | |
| 2. Visit Hexed.it | |
| 3. Open file sublime_text.exe | |
| 4. Search address 97 94 0D | |
| 5. Change to 00 00 00 | |
| 6. Export File |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ClientEncrypt { | |
| private static String publicKeyString = "<your_public_key_here>"; | |
| public static void main (String args[]) { | |
| try { | |
| // 1. generate secret key using AES | |
| KeyGenerator keyGenerator = KeyGenerator.getInstance("AES"); | |
| keyGenerator.init(128); // AES is currently available in three key sizes: 128, 192 and 256 bits.The design and strength of all key lengths of the AES algorithm are sufficient to protect classified information up to the SECRET level |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ServerDecrypt { | |
| static String privateKey = "<your_private_key_here>"; | |
| static String encryptedTextString = "<your_received_encrypted_text_here>"; | |
| static String encryptedSecretKeyString = "<your_received_encrypted_secret_key_here>"; | |
| public static void main(String args[]) { | |
| try { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.IO; | |
| using System.IO.Compression; | |
| using System.Text; | |
| class Program { | |
| private static string Compress(string text) | |
| { | |
| byte[] buffer = Encoding.UTF8.GetBytes(text); |