加密整理

import org.apache.http.HttpEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;

import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.security.MessageDigest;
import java.util.Arrays;
import java.util.Base64;
import java.util.HashMap;
import java.util.Map;

public class ECB {
static final char hexDigits[] = { ‘0’, ‘1’, ‘2’, ‘3’, ‘4’, ‘5’, ‘6’, ‘7’, ‘8’, ‘9’, ‘a’, ‘b’, ‘c’, ‘d’, ‘e’, ‘f’ };
static final String CIPHER_ALGORITHM_CBC = “AES/ECB/PKCS7Padding”;

/**
 *
 * @param contents
 * @param hexKey
 * @param operatetype 0是加密 1是解密
 * @return
 */
public static byte[] operateDecOrEnc(byte[] contents,String hexKey,Integer operatetype){
    try {
        Cipher cipher=Cipher.getInstance(CIPHER_ALGORITHM_CBC);
        System.out.println("密钥:"+hexKey);
        byte[] bytes =hexStringToBytes(hexKey);
        String base = Base64.getEncoder().encodeToString(bytes);
        System.out.println("base64密钥:"+base);
        MessageDigest sha = MessageDigest.getInstance("SHA-1");
        bytes = sha.digest(bytes);
        bytes = Arrays.copyOf(bytes, 16);
        base = Base64.getEncoder().encodeToString(bytes);
        System.out.println("sha1 base64密钥:"+base);
        SecretKey secretKey = new SecretKeySpec(bytes,"AES");
        if(operatetype==0){
            cipher.init(Cipher.ENCRYPT_MODE, secretKey);//使用加密模式初始化 密钥
        }else{
            cipher.init(Cipher.DECRYPT_MODE, secretKey);//使用解密模式初始化 密钥
        }
        byte[] operate = cipher.doFinal(contents);
        return operate;
    } catch (Exception e) {
        e.printStackTrace();
        return null;
    } 
}

public static byte[] hexStringToBytes(String hexString) {  
    if (hexString == null || hexString.equals("")) {  
        return null;  
    }  
    hexString = hexString.toUpperCase();  
    int length = hexString.length() / 2;  
    char[] hexChars = hexString.toCharArray();  
    byte[] d = new byte[length];  
    for (int i = 0; i < length; i++) {  
        int pos = i * 2;  
        d[i] = (byte) (charToByte(hexChars[pos]) << 4 | charToByte(hexChars[pos + 1]));  
    }  
    return d;  
} 

public static byte charToByte(char c) {  
        return (byte) "0123456789ABCDEF".indexOf(c);  
}  

/***
 * 
 * @Title: getMD5Format
 * @Description: 计算MD5并转换为32字节明文显示串
 * @author wujl
 * @param data
 * @return String 返回类型
 */
public static String getMD5Format(String data) {
    try {
        MessageDigest message = MessageDigest.getInstance("MD5");

        message.update(data.getBytes());
        byte[] b = message.digest();

        String digestHexStr = "";
        for (int i = 0; i < 16; i++) {
            digestHexStr += byteHEX(b[i]);
        }
        return digestHexStr;
    } catch (Exception e) {
        return null;
    }
}

/***
 * 
 * @Title: byteHEX
 * @Description:
 * @author wujl
 * @param ib
 * @return String 返回类型
 */
private static String byteHEX(byte ib) {
    char[] ob = new char[2];
    ob[0] = hexDigits[(ib >>> 4) & 0X0F];
    ob[1] = hexDigits[ib & 0X0F];
    String s = new String(ob);
    return s;
}


public static Map<String,String> getKey(String url)throws IOException{
    CloseableHttpClient m_HttpClient = HttpClients.createDefault();
    HttpPost httpPost = new HttpPost(url); 
    Map<String,String> result= new HashMap<>();
    CloseableHttpResponse httpResponse = m_HttpClient.execute(httpPost);  
    try {  
        HttpEntity entityResponse = httpResponse.getEntity();  
        InputStream ins = entityResponse.getContent();
        InputStreamReader isr = new InputStreamReader(ins);
        BufferedReader reader = new BufferedReader(isr);
        String tmp = "";
        while((tmp=reader.readLine())!=null){
            System.out.println(tmp);
        }

        return result;
    } finally {  
        httpResponse.close();  
    } 
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值