Java自检程序(自我检查)

时间:2010-12-29 11:36:40

标签: java checksum self

我必须做一点java自我检查程序(self-checksum)。 这里是我的代码示例

public class tamper {
      public static int checksum_self () throws Exception {
          File file = new File ("tamper.class");
          FileInputStream fr = new FileInputStream (file);
          int result;                   // Compute the checksum
          return result;
      }
      public static boolean check1_for_tampering () throws Exception {
            return checksum_self () != 0; // TO BE UPDATED!
      }
      public static int check2_for_tampering () throws Exception {
            return checksum_self ();
      }
      public static void main (String args[]) throws Exception {
          if (check1_for_tampering ()) {
            System.exit (-1);
          }
          float celsius = Integer.parseInt (args[0]);
          float fahrenheit = 9 * celsius / 5 + 32;
          System.out.println (celsius + "C = " + fahrenheit + "F");
      }
}

我试图做那样的事情

DigestInputStream sha = new DigestInputStream(fr, MessageDigest.getInstance("SHA"));
byte[] digest = sha.getMessageDigest();

for(..)
{
result = result + digest[i]
}

但后来我真的不知道如何检查?

编辑:

感谢您的回答

@ Adam Paynter和SpoonBenders

当然,这不是我个人使用的。我不会用它来保护任何软件......

这是我必须为我的java课程做的“练习”......

2 个答案:

答案 0 :(得分:1)

也许你应该看看signed jar files

答案 1 :(得分:0)

要检查您是否首先需要创建校验和。在编译之后可能会直接运行,您需要在校验和创建模式下运行程序,该模式将创建校验和并将其存储在文件中或您可以在运行时访问的其他位置。

然后在运行时,您将需要加载该校验和,这将是您的预期结果。然后像在代码中一样对“tamper.class”执行校验和,并检查它是否与预期结果匹配。

这是你想要做的吗?