在網絡中MD5是著名的不可逆算法,可是若是知道MD5的加密的字符串java
則能夠經過本身的加密算法對明文進行加密,對加密後的密文與字符串匹配;c++
匹配成功,表示找到明文;可是此程序的時間耗費較高!僅提供一個解密的方法!算法
代碼示例:數據庫
package md5; import java.util.Date; /** * @author greatwqs * @see Md5密碼破解 */ public class MD5解密 { private static final char code[] = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', ',', '.', '/', ';', '\'', ':', '"', '[', ']', '{', '}', '\\', '|', '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '-', '_', '+', '=', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' }; /** * 六位密碼破解 */ public static void Md5_6(String md5Password) { String testPassword; MD5 md5Obj = new MD5(); String result; for (int a = 0; a < code.length; a++) { testPassword = ""; testPassword += code[a]; for (int b = 0; b < code.length; b++) { testPassword = testPassword.substring(0, 1); testPassword += code[b]; for (int c = 0; c < code.length; c++) { testPassword = testPassword.substring(0, 2); testPassword += code[c]; for (int d = 0; d < code.length; d++) { testPassword = testPassword.substring(0, 3); testPassword += code[d]; for (int e = 0; e < code.length; e++) { testPassword = testPassword.substring(0, 4); testPassword += code[e]; for (int f = 0; f < code.length; f++) { testPassword = testPassword.substring(0, 5); testPassword += code[f]; // System.out.println (testPassword); result = md5Obj.getMD5ofStr (testPassword); if (md5Password.equals(result)) { System.out.println("密碼 已經破解!"); System.out.println("明文 是:" + testPassword); System.out.println("密文 是:" + md5Password); return; } } } } } } } } /** * 七位密碼破解,寫法詳見六位密碼破解 */ public static void Md5_7(String md5Password) { } /** * 八位密碼破解,寫法詳見六位密碼破解 */ public static void Md5_8(String md5Password) { } public static void main(String[] args) { MD5 md5Obj = new MD5(); // MD5加密對象 String md5Password = md5Obj.getMD5ofStr(password); // 把這個認爲我要找到的通過加密的密碼 System.out.println("密碼破測試中!"); System.out.println("明文是:" + password); System.out.println("密文是:" + md5Password); System.out.println("程序時間計時器!"); System.out.println("開始時間:" + new Date()); Md5_6(md5Password); // 依次調用6位破解到20位破解.. // Md5_7(testResult); System.out.println("結束時間:" + new Date()); } private static final String password = "aaa918"; /** * 這裏只是一個實現的方法, 在本身破解的時候把本身的密文直接貼出來, * 進行破解, 這裏只是進行一個aaaBc8加密的測試 */ private static final String MD5PWD = "你的數據庫中的密文"; }