アンドロイドクライアントとサービス側対称暗号化伝送demo
5270 ワード
APP側がバックグラウンドサービス側に敏感に伝送する場合、私たちは一般的に暗号化伝送が必要です.対称暗号化を使うか非対称暗号化を使うかは、データにどれだけ責任があるかによって決まります.以下は私が開発で使用したAES対称暗号化伝送を用いたdemo(親測定に役立つ)で、このdemoがあなたに一定の参考価値があることを望んでいます.対称暗号化非対称暗号化の原理ここではくだらないことを言わないで、直接コードに行きます
次の2つのブログに感謝し、さらにブロガーに感謝[1]https://www.iteye.com/blog/songjianyong-1571029 [2] https://www.cnblogs.com/Dennis-mi/articles/6639644.html [3] https://www.cnblogs.com/liunanjava/p/4297854.html
import javax.crypto.*;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.security.InvalidAlgorithmParameterException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
/**
*
* created by
*/
public class AesUtil {
/*
*
* 1.
* 6.
*/
private static final String IV_STRING = "16-Bytes--String"; // 16
public static String AESEncode(String encodeRules,String content) throws InvalidAlgorithmParameterException {
try {
byte[] keyFormat = encodeRules.getBytes("UTF-8");
byte[] contentFormat = content.getBytes("UTF-8");
SecretKeySpec secretKeySpec = new SecretKeySpec(keyFormat,"AES");
byte[] initParam = IV_STRING.getBytes("UTF-8");
IvParameterSpec ivParameterSpec = new IvParameterSpec(initParam);
Cipher cipher=Cipher.getInstance("AES/CBC/PKCS5Padding");
//
cipher.init(Cipher.ENCRYPT_MODE, secretKeySpec,ivParameterSpec);
byte [] byte_AES=cipher.doFinal(contentFormat);
return parseByte2HexStr(byte_AES);
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
} catch (NoSuchPaddingException e) {
e.printStackTrace();
} catch (InvalidKeyException e) {
e.printStackTrace();
} catch (IllegalBlockSizeException e) {
e.printStackTrace();
} catch (BadPaddingException e) {
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
//
return null;
}
/*
*
*
*/
public static String AESDncode(String encodeRules,String content) throws InvalidAlgorithmParameterException {
try {
byte[] keyFormat = encodeRules.getBytes("UTF-8");
byte[] contentFormat = parseHexStr2Byte(content);
SecretKeySpec secretKeySpec = new SecretKeySpec(keyFormat,"AES");
byte[] initParam = IV_STRING.getBytes("UTF-8");
IvParameterSpec ivParameterSpec = new IvParameterSpec(initParam);
Cipher cipher=Cipher.getInstance("AES/CBC/PKCS5Padding");
//
cipher.init(Cipher.DECRYPT_MODE, secretKeySpec,ivParameterSpec);
byte [] byte_AES=cipher.doFinal(contentFormat);
return new String(byte_AES);
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
} catch (NoSuchPaddingException e) {
e.printStackTrace();
} catch (InvalidKeyException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (IllegalBlockSizeException e) {
e.printStackTrace();
} catch (BadPaddingException e) {
e.printStackTrace();
}
//
return null;
}
/**
* 16
* @method parseByte2HexStr
* @param buf
* @return
*/
public static String parseByte2HexStr(byte buf[]){
StringBuffer sb = new StringBuffer();
for(int i = 0; i < buf.length; i++){
String hex = Integer.toHexString(buf[i] & 0xFF);
if (hex.length() == 1) {
hex = '0' + hex;
}
sb.append(hex.toUpperCase());
}
return sb.toString();
}
/**
* 16
* @method parseHexStr2Byte
* @param hexStr
* @return
*/
public static byte[] parseHexStr2Byte(String hexStr){
if(hexStr.length() < 1)
return null;
byte[] result = new byte[hexStr.length()/2];
for (int i = 0;i< hexStr.length()/2; i++) {
int high = Integer.parseInt(hexStr.substring(i*2, i*2+1), 16);
int low = Integer.parseInt(hexStr.substring(i*2+1, i*2+2), 16);
result[i] = (byte) (high * 16 + low);
}
return result;
}
public static void main(String[] args) throws InvalidAlgorithmParameterException {
/*
*
*/
String encodeRules="thisisencoderule";
System.out.println(" :" + encodeRules);
String content = " ";
System.out.println(" :"+content);
String keyContent = AesUtil.AESEncode(encodeRules,content);
System.out.println(" :" + keyContent);
System.out.println(" :"+ AesUtil.AESDncode(encodeRules,keyContent));
}
}
Reference Links 次の2つのブログに感謝し、さらにブロガーに感謝[1]https://www.iteye.com/blog/songjianyong-1571029 [2] https://www.cnblogs.com/Dennis-mi/articles/6639644.html [3] https://www.cnblogs.com/liunanjava/p/4297854.html