当前位置:   article > 正文

finalShell 离线激活_finallshell 机器码是什么

finallshell 机器码是什么
 public class finalshell {
        public static void main(String[] args) throws NoSuchAlgorithmException, IOException {
            System.out.print("请输入FinalShell的离线机器码:");
            Scanner reader = new Scanner(System.in);

            // 如果是在线运行java,这行可以写死
            String machineCode = reader.nextLine();
            // String machineCode = "FinalShell的离线机器码";

            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);
            System.out.println(pfKey);
        }

        public static String transform(String str) throws NoSuchAlgorithmException {

            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();
        }
    }





  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/701663
推荐阅读
相关标签
  

闽ICP备14008679号