Check Sum and MD5 : Check sum « Security « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Security » Check sumScreenshots 
Check Sum and MD5
  
/*
 *************************************************************************
 * The contents of this file are subject to the Openbravo  Public  License
 * Version  1.0  (the  "License"),  being   the  Mozilla   Public  License
 * Version 1.1  with a permitted attribution clause; you may not  use this
 * file except in compliance with the License. You  may  obtain  a copy of
 * the License at http://www.openbravo.com/legal/license.html 
 * Software distributed under the License  is  distributed  on  an "AS IS"
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
 * License for the specific  language  governing  rights  and  limitations
 * under the License. 
 * The Original Code is Openbravo ERP. 
 * The Initial Developer of the Original Code is Openbravo SL 
 * All portions are Copyright (C) 2009 Openbravo SL 
 * All Rights Reserved. 
 * Contributor(s):  ______________________________________.
 ************************************************************************
 */

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FilenameFilter;
import java.math.BigInteger;
import java.security.MessageDigest;
import java.util.Properties;

public class CheckSum {
  private String obDir;
  private Properties properties;

  public CheckSum(String dir) {
    obDir = dir.replace("\\""/");
    if (!obDir.endsWith("/"))
      obDir += "/";
    properties = new Properties();
    File propertiesFile = new File(obDir + "/config/checksums");
    if (propertiesFile.exists()) {
      try {
        properties.load(new FileInputStream(propertiesFile));
      catch (Exception e) {
        // do nothing, just do not read properties
      }
    }
  }

  private void getCheckSum(MessageDigest cs, File fthrows Exception {
    if (f.isDirectory()) {
      File[] list = f.listFiles(new FilenameFilter() {
        public boolean accept(File file, String s) {
          return !s.equals(".svn");
        }
      });
      for (File element : list)
        getCheckSum(cs, element);
    else {

      FileInputStream is = new FileInputStream(f);
      byte[] bytes = new byte[1024];
      int len = 0;

      // Checksum file directly
      while ((len = is.read(bytes)) >= 0) {
        cs.update(bytes, 0, len);
      }
      is.close();
    }
  }

  private String getCheckSum(String[] filesthrows Exception {
    MessageDigest cs = MessageDigest.getInstance("MD5");
    for (String fileName : files) {
      File file = new File(fileName);
      if (file.exists())
        getCheckSum(cs, file);
    }
    return new BigInteger(1, cs.digest()).toString(16);
  }

  private String[] getFiles(String type) {
    if (type.equals("md5.db.structure")) {
      String rt[] obDir + "src-db/database/model", obDir + "modules" };
      return rt;
    else if (type.equals("md5.db.sourcedata")) {
      String rt[] obDir + "src-db/database/sourcedata", obDir + "modules" };
      return rt;
    else if (type.equals("md5.wad")) {
      String rt[] obDir + "src-wad/lib/openbravo-wad.jar" };
      return rt;
    else if (type.equals("md5.skins")) {
      String rt[] obDir + "web/skins" };
      return rt;
    else {
      String rt[] new String[0];
      return rt;
    }
  }

  private void saveCheckSum() throws Exception {

    FileOutputStream file = new FileOutputStream(obDir + "/config/checksums");
    properties.store(file, "Checksums for build tasks comparation");
  }

  public String calculateCheckSum(String type) {
    try {
      String[] files = getFiles(type);
      String checkSum = getCheckSum(files);
      properties.setProperty(type, checkSum);
      saveCheckSum();
      return checkSum;
    catch (Exception e) {
      e.printStackTrace();
      return "0";
    }
  }

  public String calculateCheckSumDBStructure() {
    return calculateCheckSum("md5.db.structure");
  }

  public String calculateCheckSumDBSourceData() {
    return calculateCheckSum("md5.db.sourcedata");
  }

  public String calculateCheckSumWad() {
    return calculateCheckSum("md5.wad");
  }

  public String calculateCheckSkins() {
    return calculateCheckSum("md5.sinks");
  }

  public String getCheckSumDBSTructure() {
    return properties.getProperty("md5.db.structure""0");
  }

  public String getCheckSumDBSourceData() {
    return properties.getProperty("md5.db.sourcedata""0");
  }

  public String getCheckSumWad() {
    return properties.getProperty("md5.wad""0");
  }

  public String getCheckSum(String type) {
    return properties.getProperty(type, "0");
  }

  public static void main(String[] args) {
    CheckSum cs = new CheckSum("/home/openbravo/ws/trunk/openbravo");
    cs.calculateCheckSum("md5.skins");
  }

}

   
    
  
Related examples in the same category
1. Generates md5-sums based on a string
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.