[Java] 암호화 복호화 예제코드
- 참고사이트
참고
복호화 때 사용 할 값을 쿠키에서 가지고 오면, 브라우저에서 값을 인코딩하여 저정하기 때문에, decAES 함수 실행 전 에 복호화 할 값을 디코딩 해야한다.
예제코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import java.net.URLDecoder;
import java.nio.charset.StandardCharsets;
import java.security.Key;
import java.util.Base64;
import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import lombok.experimental.UtilityClass;
@UtilityClass
public class EncryptionUtil {
public Key getAESKey() thorws Exception {
String key = "ymkymkymkymk";
byte[] keyBytes = new byte[16];
byte[] b = key.getBytes(StandardCharsets.UTF_8);
int len = b.length;
if (len > keyBytes.length) {
len = keyBytes.length;
}
System.arraycopy(b, 0, keyBytes, 0, len);
Key keySpec = new SecretKeySpec(keyBytes, "AES");
return keySpec;
}
// 암호화
public String encAES(String str) thorws Exception {
Key keySpec = getAESKey();
String iv = "0987654321654321";
Cipher c = Cipher.getInstance("AES/CBC/PKCS5Padding");
c.init(Cipher.ENCRYPT_MODE, keySpec, new IvParameterSpec(iv.getBytes(StandardCharsets.UTF_8)));
byte[] encrypted = c.doFinal(str.getBytes(StandardCharsets.UTF_8));
return new String(Base64.getEncoder().encode(encrypted));
}
// 복호화
public String decAES(String enStr) throws Exception thorws Exception {
Key keySpec = getAESKey();
String iv = "0987654321654321";
Cipher c = Cipher.getInstance("AES/CBC/PKCS5Padding");
c.init(Cipher.DECRYPT_MODE, keySpec, new IvParameterSpec(iv.getBytes(StandardCharsets.UTF_8)));
byte[] byteStr = Base64.getDecoder().decode(URLDecoder.decode(enStr, "UTF-8").getBytes(StandardCharsets.UTF_8));
return new String(c.doFinal(byteStr), "UTF-8");
}
}
Leave a comment