일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 설정
- node
- install
- 노드
- PostgreSQL
- JS
- 3.0
- java
- postgres
- ubuntu
- 리눅스
- 설치
- python
- 아틀라시안
- 하모니카
- DATABASE
- 윈도우
- 스크립트
- Linux
- 데이터베이스
- hamonikr
- script
- Windows
- DB
- Atlassian
- 자바스크립트
- 자바
- 파이썬
- javascript
- 우분투
Archives
- Today
- Total
LukeHan 의 잡다한 기술 블로그
AES-256 암복호화 예제 본문
반응형
package com.verywords.fw.core.util;
import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.util.Base64;
public class AESUtil{
public static String alg = "AES/CBC/PKCS5Padding";
private static final String key = "BLOG_LUKEHAN_KR-LukeHan";
private static final String iv = key.substring(0, 16);
public static String encrypt(String text) throws Exception{
Cipher cipher = Cipher.getInstance(alg);
SecretKeySpec keySpec = new SecretKeySpec(key.getBytes(), "AES");
IvParameterSpec ivParamSpec = new IvParameterSpec(iv.getBytes());
cipher.init(Cipher.ENCRYPT_MODE, keySpec, ivParamSpec);
byte[] encrypted = cipher.doFinal(text.getBytes("UTF-8"));
return Base64.getEncoder().encodeToString(encrypted);
}
public static String decrypt(String cipherText) throws Exception{
Cipher cipher = Cipher.getInstance(alg);
SecretKeySpec keySpec = new SecretKeySpec(key.getBytes(), "AES");
IvParameterSpec ivParamSpec = new IvParameterSpec(iv.getBytes());
cipher.init(Cipher.DECRYPT_MODE, keySpec, ivParamSpec);
byte[] decodedBytes = Base64.getDecoder().decode(cipherText);
byte[] decrypted = cipher.doFinal(decodedBytes);
return new String(decrypted, "UTF-8");
}
}
참고
반응형
Comments