博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
老湿不给你力啊:各种加密解密
阅读量:4933 次
发布时间:2019-06-11

本文共 16456 字,大约阅读时间需要 54 分钟。

 正文 

  

加密

  加密,是以某种特殊的 改变原有的信息数据,使得未授权的用户即使获得了已加密的信息,但因不知 的方法,仍然无法了解信息的内容。 在航空学中,指利用航空摄影像片上已知的少数控制点,通过对像片测量和计算的方法在像对或整条航摄带上增加控制点的作业。

 

分享下各种加密解密

        

package sedion.jeffli.wmuitp.util;import java.io.File;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.io.UnsupportedEncodingException;import java.net.URLDecoder;import java.net.URLEncoder;import java.security.GeneralSecurityException;import java.security.MessageDigest;import java.security.NoSuchAlgorithmException;import java.security.NoSuchProviderException;import java.security.Provider;import java.security.SecureRandom;import javax.crypto.Cipher;import javax.crypto.KeyGenerator;import javax.crypto.SecretKey;import javax.crypto.spec.SecretKeySpec;/** 编解码、加解密帮助类 */public class EnCryptHelper{    /** AES 密匙长度 */    public static final int AES_KEY_SIZE        = 128;    /** DES 密匙长度 */    public static final int DES_KEY_SIZE        = 56;    /** 加密模式 */    public static final int ENCRYPT_MODE        = Cipher.ENCRYPT_MODE;    /** 解密模式 */    public static final int DECRYPT_MODE        = Cipher.DECRYPT_MODE;    /** 默认字符集(UTF-8) */    public static final String DEFAULT_ENCODING    = "UTF-8";    /** 加密方法:MD5 */    public static final String MD5                = "MD5";    /** 加密方法:SHA */    public static final String SHA                = "SHA";    /** 加密方法:AES */    public static final String AES                = "AES";    /** 加密方法:DES */    public static final String DES                = "DES";        private static final String SEC_RAN_ALG        = "SHA1PRNG";    /** byte[] -> 十六进制字符串 (小写) */    public final static String bytes2HexStr(byte[] bytes)    {        return bytes2HexStr(bytes, false);    }        /** byte[] -> 十六进制字符串 */    public final static String bytes2HexStr(byte[] bytes, boolean capital)    {        StringBuilder sb = new StringBuilder();                for(byte b : bytes)            sb.append(byte2Hex(b, capital));                return sb.toString();    }    /** byte -> 十六进制双字符 (小写) */    public final static char[] byte2Hex(byte b)    {        return byte2Hex(b, false);    }    /** byte -> 十六进制双字符 */    public final static char[] byte2Hex(byte b, boolean capital)    {        byte bh    = (byte)(b >>> 4 & 0xF);        byte bl    = (byte)(b & 0xF);        return new char[] {halfByte2Hex(bh, capital), halfByte2Hex(bl, capital)};    }        /** 半 byte -> 十六进制单字符 (小写) */    public final static char halfByte2Hex(byte b)    {        return halfByte2Hex(b, false);    }        /** 半 byte -> 十六进制单字符 */    public final static char halfByte2Hex(byte b, boolean capital)    {        return (char)(b <= 9 ? b + '0' : (capital ? b + 'A' - 0xA : b + 'a' - 0xA));    }        /** 十六进制字符串 -> byte[] */    public final static byte[] hexStr2Bytes(String str)    {        int length = str.length();                if(length % 2 != 0)        {            str = "0" + str;            length = str.length();        }                byte[] bytes = new byte[length / 2];                for(int i = 0; i < bytes.length; i++)            bytes[i] = hex2Byte(str.charAt(2 * i), str.charAt(2 * i + 1));                return bytes;    }    /** 十六进制双字符 -> byte */    public final static byte hex2Byte(char ch, char cl)    {        byte bh    = hex2HalfByte(ch);        byte bl    = hex2HalfByte(cl);                return (byte)((bh << 4) + bl);    }        /** 十六进制单字符 -> 半 byte */    public final static byte hex2HalfByte(char c)    {        return (byte)(c <= '9' ? c - '0' : (c <= 'F' ? c - 'A' + 0xA : c - 'a' + 0xA));    }        /** 使用默认字符集对字符串编码后再进行 MD5 加密 */    public final static String md5(String input)    {        return md5(input, null);    }        /** 使用指定字符集对字符串编码后再进行 MD5 加密 */    public final static String md5(String input, String charset)    {        return encode(getMd5Digest(), input, charset);    }        /** MD5 加密 */    public final static byte[] md5(byte[] input)    {        MessageDigest algorithm = getMd5Digest();        return encode(algorithm, input);    }        /** 使用默认字符集对字符串编码后再进行 SHA 加密 */    public final static String sha(String input)    {        return sha(input, null);    }        /** 使用指定字符集对字符串编码后再进行 SHA 加密 */    public final static String sha(String input, String charset)    {        return encode(getShaDigest(), input, charset);    }        /** 使用默认字符集对字符串编码后再进行 SHA-{X} 加密,其中 {X} 由 version 参数指定 */    public final static String sha(String input, int version)    {        return sha(input, null, version);    }        /** 使用指定字符集对字符串编码后再进行 SHA-{X} 加密,其中 {X} 由 version 参数指定 */    public final static String sha(String input, String charset, int version)    {        return encode(getShaDigest(version), input, charset);    }        /** SHA加密 */    public final static byte[] sha(byte[] input)    {        MessageDigest algorithm = getShaDigest();        return encode(algorithm, input);    }        /** SHA-{X} 加密,其中 {X} 由 version 参数指定 */    public final static byte[] sha(byte[] input, int version)    {        MessageDigest algorithm = getShaDigest(version);        return encode(algorithm, input);    }        /** 使用指定算法对字符串加密 */    public final static String encode(MessageDigest algorithm, String input)    {        return encode(algorithm, input, null);    }        /** 使用指定字符集对字符串编码后再进行 SHA-{X} 加密,字符串的编码由 charset 参数指定 */    public final static String encode(MessageDigest algorithm, String input, String charset)    {        try        {            byte[] bytes    = input.getBytes(safeCharset(charset));            byte[] output    = encode(algorithm, bytes);                        return bytes2HexStr(output);        }        catch(UnsupportedEncodingException e)        {            throw new RuntimeException(e);        }    }        /** 使用指定算法对 byte[] 加密 */    public final static byte[] encode(MessageDigest algorithm, byte[] input)    {        return algorithm.digest(input);    }        /** 获取 MD5 加密摘要对象 */    public final static MessageDigest getMd5Digest()    {        return getDigest(MD5);    }        /** 获取 SHA 加密摘要对象 */    public final static MessageDigest getShaDigest()    {        return getDigest(SHA);    }        /** 获取 SHA-{X} 加密摘要对象,其中 {X} 由 version 参数指定 */    public final static MessageDigest getShaDigest(int version)    {        String algorithm = String.format("%s-%d", SHA, version);        return getDigest(algorithm);    }        /** 根据加密方法名称获取加密摘要对象 */    public final static MessageDigest getDigest(String algorithm)    {        try        {            return MessageDigest.getInstance(algorithm);        }        catch(NoSuchAlgorithmException e)        {            throw new RuntimeException(e);        }    }    /** 根据加密方法名称和提供者获取加密摘要对象 */    public final static MessageDigest getDigest(String algorithm, String provider)    {        try        {            return MessageDigest.getInstance(algorithm, provider);        }        catch(NoSuchAlgorithmException e)        {            throw new RuntimeException(e);        }        catch(NoSuchProviderException e)        {            throw new RuntimeException(e);        }    }    /** 根据加密方法名称和提供者获取加密摘要对象 */    public final static MessageDigest getDigest(String algorithm, Provider provider)    {        try        {            return MessageDigest.getInstance(algorithm, provider);        }        catch(NoSuchAlgorithmException e)        {            throw new RuntimeException(e);        }    }    /** URL编码 (使用默认字符集) */    public final static String urlEncode(String url)    {        return urlEncode(url, null);    }        /** URL编码 (使用指定字符集) */    public final static String urlEncode(String url, String charset)    {        try        {            return URLEncoder.encode(url, safeCharset(charset));        }        catch(UnsupportedEncodingException e)        {            throw new RuntimeException(e);        }    }    /** URL解码 (使用默认字符集) */    public final static String urlDecode(String url)    {        return urlDecode(url, null);    }        /** URL解码 (使用指定字符集) */    public final static String urlDecode(String url, String enc)    {        try        {            return URLDecoder.decode(url, safeCharset(enc));        }        catch(UnsupportedEncodingException e)        {            throw new RuntimeException(e);        }    }    /** base 64 编码 */    public final static byte[] base64Encode(byte[] bytes)    {        return Base64.encode(bytes);    }    /** base 64 编码(到达指定字符数后换行) */    public final static byte[] base64Encode(byte[] bytes, int wrapAt)    {        return Base64.encode(bytes, wrapAt);    }    /** base 64 编码 */    public final static void base64Encode(File source, File target)    {        try        {            Base64.encode(source, target);        }        catch(IOException e)        {            throw new RuntimeException(e);        }    }    /** base 64 编码(到达指定字符数后换行) */    public final static void base64Encode(File source, File target, int wrapAt)    {        try        {            Base64.encode(source, target, wrapAt);        }        catch(IOException e)        {            throw new RuntimeException(e);        }    }    /** base 64 编码 */    public final static void base64Encode(InputStream is, OutputStream os)    {        try        {            Base64.encode(is, os);        }        catch(IOException e)        {            throw new RuntimeException(e);        }    }    /** base 64 编码(到达指定字符数后换行) */    public final static void base64Encode(InputStream is, OutputStream os, int wrapAt)    {        try        {            Base64.encode(is, os, wrapAt);        }        catch(IOException e)        {            throw new RuntimeException(e);        }    }    /** 使用默认字符集对字符串进行 base 64 编码 */    public final static String base64Encode(String str)    {        return Base64.encode(str, DEFAULT_ENCODING);    }    /** 使用指定字符集对字符串进行 base 64 编码 */    public final static String base64Encode(String str, String charset)    {        return Base64.encode(str, charset);    }    /** base 64 解码 */    public final static byte[] base64Decode(byte[] bytes)    {        return Base64.decode(bytes);    }    /** base 64 解码 */    public final static void base64Decode(File source, File target)    {        try        {            Base64.decode(source, target);        }        catch(IOException e)        {            throw new RuntimeException(e);        }    }    /** base 64 解码 */    public final static void base64Decode(InputStream is, OutputStream os)    {        try        {            Base64.decode(is, os);        }        catch(IOException e)        {            throw new RuntimeException(e);        }    }    /** 使用默认字符集对字符串进行 base 64 解码 */    public final static String base64Decode(String str)    {        return Base64.decode(str, DEFAULT_ENCODING);    }    /** 使用指定字符集对字符串进行 base 64 解码 */    public final static String base64Decode(String str, String charset)    {        return Base64.decode(str, charset);    }    /** 使用默认字符集对字符串编码后再进行 AES 加密 */    public final static String aesEncrypt(String content, String password) throws GeneralSecurityException    {        return aesEncrypt(content, null, password);    }        /** 使用指定字符集对字符串编码后再进行 AES 加密,字符串的编码由 charset 参数指定 */    public final static String aesEncrypt(String content, String charset, String password) throws GeneralSecurityException    {        return encrypt(AES, AES_KEY_SIZE, content, charset, password);    }        /** AES 加密 */    public final static byte[] aesEncrypt(byte[] content, String password) throws GeneralSecurityException    {        return crypt(AES, ENCRYPT_MODE, AES_KEY_SIZE, content, password);    }        /** AES 解密,并使用默认字符集生成解密后的字符串 */    public final static String aesDecrypt(String content, String password) throws GeneralSecurityException    {        return aesDecrypt(content, null, password);    }        /** AES 解密,并使用指定字符集生成解密后的字符串,字符串的编码由 charset 参数指定 */    public final static String aesDecrypt(String content, String charset, String password) throws GeneralSecurityException    {        return decrypt(AES, AES_KEY_SIZE, content, charset, password);    }    /** AES 解密 */    public final static byte[] aesDecrypt(byte[] content, String password) throws GeneralSecurityException    {        return crypt(AES, DECRYPT_MODE, AES_KEY_SIZE, content, password);    }    /** 使用默认字符集对字符串编码后再进行 DES 加密 */    public final static String desEncrypt(String content, String password) throws GeneralSecurityException    {        return desEncrypt(content, null, password);    }        /** 使用指定字符集对字符串编码后再进行 DES 加密,字符串的编码由 charset 参数指定 */    public final static String desEncrypt(String content, String charset, String password) throws GeneralSecurityException    {        return encrypt(DES, DES_KEY_SIZE, content, charset, password);    }        /** DES 加密 */    public final static byte[] desEncrypt(byte[] content, String password) throws GeneralSecurityException    {        return crypt(DES, ENCRYPT_MODE, DES_KEY_SIZE, content, password);    }    /** DES 解密,并使用默认字符集生成解密后的字符串 */    public final static String desDecrypt(String content, String password) throws GeneralSecurityException    {        return desDecrypt(content, null, password);    }        /** DES 解密,并使用指定字符集生成解密后的字符串,字符串的编码由 charset 参数指定 */    public final static String desDecrypt(String content, String charset, String password) throws GeneralSecurityException    {        return decrypt(DES, DES_KEY_SIZE, content, charset, password);    }    /** DES 解密 */    public final static byte[] desDecrypt(byte[] content, String password) throws GeneralSecurityException    {        return crypt(DES, DECRYPT_MODE, DES_KEY_SIZE, content, password);    }    /**     * 加密字符串     *      * @param method    :加密方法(AES、DES)     * @param keysize    :密匙长度     * @param content    :要加密的内容     * @param charset    :加密内容的编码字符集     * @param password    :密码     * @return            :加解密结果     * @throws GeneralSecurityException    加密失败抛出异常     */    public final static String encrypt(String method, int keysize, String content, String charset, String password) throws GeneralSecurityException    {        try        {            byte[] bytes    = content.getBytes(safeCharset(charset));            byte[] output    = crypt(method, ENCRYPT_MODE, keysize, bytes, password);                        return bytes2HexStr(output);        }        catch(UnsupportedEncodingException e)        {            throw new RuntimeException(e);        }    }        /**     * 解密字符串     *      * @param method    :解密方法(AES、DES)     * @param keysize    :密匙长度     * @param content    :要解密的内容     * @param charset    :解密结果的编码字符集     * @param password    :密码     * @return            :加解密结果     * @throws GeneralSecurityException    解密失败抛出异常     */    public final static String decrypt(String method, int keysize, String content, String charset, String password) throws GeneralSecurityException    {        try        {            byte[] bytes    = hexStr2Bytes(content);            byte[] output    = crypt(method, DECRYPT_MODE, keysize, bytes, password);                        return new String(output, safeCharset(charset));        }        catch(UnsupportedEncodingException e)        {            throw new RuntimeException(e);        }    }        /**     * 加/解密     *      * @param method    :加/解密方法(AES、DES)     * @param mode        :模式(加密/解密)     * @param keysize    :密匙长度     * @param content    :要加/解密的内容     * @param password    :密码     * @return            :加解密结果     * @throws GeneralSecurityException    解密失败抛出异常     */    public final static byte[] crypt(String method, int mode, int keysize, byte[] content, String password) throws GeneralSecurityException    {            KeyGenerator kgen    = KeyGenerator.getInstance(method);            SecureRandom secure    = SecureRandom.getInstance(SEC_RAN_ALG);            String seed            = GeneralHelper.safeString(password);                        secure.setSeed(seed.getBytes());            kgen.init(keysize, secure);            SecretKey secretKey    = kgen.generateKey();            byte[] enCodeFormat    = secretKey.getEncoded();            SecretKeySpec key    = new SecretKeySpec(enCodeFormat, method);            Cipher cipher        = Cipher.getInstance(method);                        cipher.init(mode, key);            return cipher.doFinal(content);    }        private final static String safeCharset(String charset)    {        if(GeneralHelper.isStrEmpty(charset))            charset = DEFAULT_ENCODING;                return charset;    }}

 

总结

  各种加密解密分享给大家哦,打个小广告:

 

转载于:https://www.cnblogs.com/Alandre/p/3687428.html

你可能感兴趣的文章
在Ubuntu中安装PHP,MySQL,Nginx和phpMyAdmin
查看>>
类模板相互引用的问题(错误:缺少类型说明符-假定为int。注意:C++不支持默认int)...
查看>>
操作系统下载路径
查看>>
网站开发 关于图片压缩 以及图片使用
查看>>
把查询出来的结果进行修改再赋值给list
查看>>
POSIX条件变量pthread_cond
查看>>
开博了
查看>>
C# Dictionary 字典用法 记录
查看>>
php中iconv函数使用问题
查看>>
hive的count(distinct id)测试--慎用
查看>>
第九周周总结
查看>>
关于一个简单面试题(。net)
查看>>
Logistic Regression
查看>>
RecipientsEditor-信息收件人输入框
查看>>
8lession-基础类型转化
查看>>
线程同步复习
查看>>
Nginx http反向代理流程Proxy_pass模块
查看>>
HTML5 新元素标签系列:使用 HTML5 设计自己的博客
查看>>
51CTO大赛,欢迎投博主一票
查看>>
FlashCS5作成SWC,在Flex4中使用(1)
查看>>