public static byte ivBytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
암호화 함수
public static String encrypt(String plainText) throws Exception
{
byte convKeyBytes = Hex.decodeHex("{AES KEY}".toCharArray())
byte convTextBytes = plainText.getBytes("UTF8")
AlgorithmParameterSpec ivSpec = new IvParameterSpec(ivBytes)
SecretKeySpec newKey = new SecretKeySpec(convKeyBytes, "AES")
Cipher cipher = null
cipher = Cipher.getInstance("AESCBCPKCS5Padding")
cipher.init(Cipher.ENCRYPT_MODE, newKey, ivSpec)
String encodeing = new String(Base64.encodeBase64(cipher.doFinal(convTextBytes), false))
return encodeing
}
복호화 함수
public static String decrypt(String encryptedText) throws Exception
{
byte convKeyBytes = Hex.decodeHex("{AES KEY}".toCharArray())
byte convTextBytes = Base64.decodeBase64(encryptedText)
AlgorithmParameterSpec ivSpec = new IvParameterSpec(ivBytes)
SecretKeySpec newKey = new SecretKeySpec(convKeyBytes, "AES")
Cipher cipher = Cipher.getInstance("AESCBCPKCS5Padding")
cipher.init(Cipher.DECRYPT_MODE, newKey, ivSpec)
return new String(cipher.doFinal(convTextBytes), "UTF8")
}