6位MD5加密解密

package com.test;

import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Date;

public class Test {
	private static final String password = "111111";
	/**
	 * @author lilin
	 * @date 2011-8-13 上午11:21:38
	 * @Title: main
	 * @param @param args
	 * @return void
	 */
	private static final char code[] = { '1', '2', '3', '4', '5', '6' };

	public static void main(String[] args) {
		Test md5Obj = new Test();
		// 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());
	}

	/**
	 * 六位密码破解
	 */
	public static void Md5_6(String md5Password) {
		String testPassword;
		Test md5Obj = new Test();
		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];
								result = md5Obj.getMD5ofStr

								(testPassword);
								if (md5Password.equals(result)) {
									System.out.println("密码已经破解!");
									System.out.println("明文是:" + testPassword);
									System.out.println("密文是:" + md5Password);
									return;
								}
							}
						}
					}
				}
			}
		}
	}

	/**
	 * MD5 加密
	 */
	private String getMD5ofStr(String str) {
		MessageDigest messageDigest = null;

		try {
			messageDigest = MessageDigest.getInstance("MD5");

			messageDigest.reset();

			messageDigest.update(str.getBytes("UTF-8"));
		} catch (NoSuchAlgorithmException e) {
			System.out.println("NoSuchAlgorithmException caught!");
			System.exit(-1);
		} catch (UnsupportedEncodingException e) {
			e.printStackTrace();
		}

		byte[] byteArray = messageDigest.digest();

		StringBuffer md5StrBuff = new StringBuffer();

		for (int i = 0; i < byteArray.length; i++) {
			if (Integer.toHexString(0xFF & byteArray[i]).length() == 1)
				md5StrBuff.append("0").append(
						Integer.toHexString(0xFF & byteArray[i]));
			else
				md5StrBuff.append(Integer.toHexString(0xFF & byteArray[i]));
		}

		return md5StrBuff.toString();
	}

}

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值