美文网首页
FInalShell高级版离线激活3.9.4

FInalShell高级版离线激活3.9.4

作者: coderTG | 来源:发表于2022-09-01 08:34 被阅读0次

    FInalShell高级版离线激活,3.9.4可用
    原帖地址:https://blog.csdn.net/qq_29864051/article/details/124003471

    1、激活对话框中任意输入用户名和密码,点离线激活
    2、复制机器码至下方代码块中《在此处放置机器码》位置,去掉书名号
    3、寻找一个可以在线运行java代码的网站,例如https://www.json.cn/runcode/run_java/

    可以在线运行的代码:

    import java.io.IOException;
    import java.security.MessageDigest;
    import java.security.NoSuchAlgorithmException;
    import java.util.Scanner;
    
    class Main{
        public static void main(String[] args) throws NoSuchAlgorithmException, IOException {
            System.out.print("请输入FinalShell的离线机器码:");
            @SuppressWarnings("resource")
            //Scanner reader = new Scanner(System.in);
            String machineCode = "cot0@123456789874654512"; // 在此处放置机器码
            generateKey(machineCode);
        }
    
        public static void generateKey(String hardwareId) throws NoSuchAlgorithmException {
            String proKey = transform(61305 + hardwareId + 8552);
            String pfKey = transform(2356 + hardwareId + 13593);
            System.out.println("请将此行复制到离线激活中:" + proKey);
        }
    
        public static String transform(String str) throws NoSuchAlgorithmException {
    
            @SuppressWarnings("unused")
            String md5 = hashMD5(str);
    
            return hashMD5(str).substring(8, 24);
        }
    
        public static String hashMD5(String str) throws NoSuchAlgorithmException {
            MessageDigest digest = MessageDigest.getInstance("MD5");
            byte[] hashed = digest.digest(str.getBytes());
            StringBuilder sb = new StringBuilder();
            for (byte b : hashed) {
                int len = b & 0xFF;
                if (len < 16) {
                    sb.append("0");
                }
                sb.append(Integer.toHexString(len));
            }
            return sb.toString();
        }
    }
    
    
    image.png

    相关文章

      网友评论

          本文标题:FInalShell高级版离线激活3.9.4

          本文链接:https://www.haomeiwen.com/subject/ifuenrtx.html