encryptor

import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESKeySpec;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;

public class GeEncryptor {

    /**
     * Encrypt a input string to MD5 code
     * @param src
     *      Input string src
     * @return
     *      encrypted result
     */
    public static String encryptToMD5(String src){
        String md5result = null;
        try {
            md5result = unreversedEncrypt(src,"MD5");
        } catch (Exception e) {}
        return md5result;
    }

    /**
     * Unreversed encrypt a string with specified algorithm
     * @param src
     * @param algorithm
     * @return
     */
    public static String unreversedEncrypt(String src, String algorithm)throws Exception{

        MessageDigest messageDigest = null;

        try {
            messageDigest = MessageDigest.getInstance(algorithm);
            messageDigest.reset();
            messageDigest.update(src.getBytes());
        } catch (NoSuchAlgorithmException e) {
            throw new IllegalArgumentException("No such algorgithm:"+algorithm);
        }

        byte[] byteArray = messageDigest.digest();
        StringBuffer md5StrBuff = new StringBuffer();

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

        return md5StrBuff.toString();
    }

    /**
     * Encrypt a input string SHA1 code
     * @param src
     * @return
     */
    public static String encryptToSHA1(String src){
        String sha1result = null;
        try {
            sha1result = unreversedEncrypt(src,"SHA1");
        } catch (Exception e) {}
        return sha1result;
    }

    /**
     * Encrypt(DES) input data with a string key
     * @param data
     *      Input data
     * @param strKey
     *      String key with a length bigger or equals to 8
     * @return
     *      Encrypted result
     */
    public static String encryptByDES(String data,String strKey){

        if(strKey==null || strKey.length()<8)
            throw new IllegalArgumentException("The strKey should have a value with its'length bigger than 8");

        try {
            return byte2hex(desEncrypt(data.getBytes(), strKey.getBytes()));
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

    /**
     * Decrypt(DES) input data with a string key
     * @param data
     *      Input data
     * @param strKey
     *      String key with a length bigger or equals to 8
     * @return
     *      Decrypted result
     */
    public static String decryptByDES(String data,String strKey){

        if(strKey==null || strKey.length()<8)
            throw new IllegalArgumentException("The strKey should have a value with its'length bigger than 8");

        try {
            byte[] bs = desDecrypt(hex2byte(data.getBytes()),strKey.getBytes());
            return new String(bs);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

    private final static String DES = "DES";

    /**
     * 加密
     * @param src
     *            数据源
     * @param key
     *            密钥
     * @return 返回加密后的数据
     * @throws Exception
     */
    private static byte[] desEncrypt(byte[] src, byte[] key) throws Exception {
        // DES算法要求有一个可信任的随机数源
        SecureRandom sr = new SecureRandom();
        // 从原始密匙数据创建DESKeySpec对象
        DESKeySpec dks = new DESKeySpec(key);
        // 创建一个密匙工厂,然后用它把DESKeySpec转换成
        // 一个SecretKey对象
        SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(DES);
        SecretKey securekey = keyFactory.generateSecret(dks);
        // Cipher对象实际完成加密操作
        Cipher cipher = Cipher.getInstance(DES);
        // 用密匙初始化Cipher对象
        cipher.init(Cipher.ENCRYPT_MODE, securekey, sr);
        // 现在,获取数据并加密
        // 正式执行加密操作
        return cipher.doFinal(src);
    }

    /**
     * 解密
     * @param src
     *            数据源
     * @param key
     *            密钥
     * @return 返回解密后的原始数据
     * @throws Exception
     */
    private static byte[] desDecrypt(byte[] src, byte[] key) throws Exception {
        // DES算法要求有一个可信任的随机数源
        SecureRandom sr = new SecureRandom();
        // 从原始密匙数据创建一个DESKeySpec对象
        DESKeySpec dks = new DESKeySpec(key);
        // 创建一个密匙工厂,然后用它把DESKeySpec对象转换成
        // 一个SecretKey对象
        SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(DES);
        SecretKey securekey = keyFactory.generateSecret(dks);
        // Cipher对象实际完成解密操作
        Cipher cipher = Cipher.getInstance(DES);
        // 用密匙初始化Cipher对象
        cipher.init(Cipher.DECRYPT_MODE, securekey, sr);
        // 现在,获取数据并解密
        // 正式执行解密操作
        return cipher.doFinal(src);
    }

    /**
     *字节转化成十六进制字符串
     * @param b
     * @return
     */
    private static String byte2hex(byte[] b) {
        String hs = "";
        String stmp = "";
        for (int n = 0; n < b.length; n++) {
            stmp = (java.lang.Integer.toHexString(b[n] & 0XFF));
            if (stmp.length() == 1)
                hs = hs + "0" + stmp;
            else
                hs = hs + stmp;
        }
        return hs.toUpperCase();
    }

    /**
     * 十六进制转换成字节
     * @param b
     * @return
     */
    private static byte[] hex2byte(byte[] b) {
        if ((b.length % 2) != 0)
            throw new IllegalArgumentException("the length of input is not even");
        byte[] b2 = new byte[b.length / 2];
        for (int n = 0; n < b.length; n += 2) {
            String item = new String(b, n, 2);
            b2[n / 2] = (byte) Integer.parseInt(item, 16);
        }
        return b2;
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,294评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,780评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,001评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,593评论 1 289
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,687评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,679评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,667评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,426评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,872评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,180评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,346评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,019评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,658评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,268评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,495评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,275评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,207评论 2 352

推荐阅读更多精彩内容

  • 以下内容是对xlsx包的说明文档的整理:xlsx包说明文档 该包通过操作以下七种对象来对excel进行操作 wor...
    煮豆燃逗比阅读 940评论 0 3
  • 高度是什么? 老在讲高度,高度不是细节推出来的吗?细节不是生活中来的吗?为什么生活细节出来的东西都不对了? 总是被...
    宁静996阅读 282评论 7 5
  • 最近看到一个故事:二桃杀三士。 说是,春秋时,齐景公有三个勇士:公孙接、田开疆和古冶子。三个人身材粗壮臂力惊人,但...
    冰玲_7387阅读 554评论 0 2
  • 宏伟而辽远, 寂寞而深沉。 钢筋驻立原野, 水泥混搅大地。 冷漠而悸动的心穿越街口, 川流不息的红绿灯, 映照这光...
    古风长歌阅读 423评论 2 4
  • 杂碎 一 九七五年二月间,一个平平常常的日子。天下着雪,密了,大了。飞舞的雪花把天地搅得一片迷蒙。 此刻,邵家沟的...
    黑土地_6345阅读 290评论 2 12