반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- JUnit
- Java 1.8
- No tests found for given includes
- java 버전 변경
- log error
- OpenFeign
- easy
- springbatch error
- maybe not public or not valid?
- 스프링부트테스트
- AWS CLI
- querydsl no sources given
- java 11
- el1008e
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- mac os git error
- parse
- springboottest
- no sources given
- springboot
- aws
- error
- yum install java
- LeetCode
- Medium
- java version
- property or field 'jobparameters' cannot be found on object of type
- java
- java 1.8 11
- java 여러개 버전
Archives
- Today
- Total
목록mysql decrypt function (1)
쩨이엠 개발 블로그
[MySQL] AES-256 암복호화 설정 (AES_DECRYPT)
서론 API에서 받아오는 데이터 값으로 암호화를 했더니 실제로 데이터를 찾기가 매우 어려워졌다 해서 DB에서 조회할 때엔 복호화 된 값으로 볼 수 있는 방법을 찾았더니 역시나 있었다 (멋진 사람들) mysql의 기본 세팅은 하기와 같이 AES-128로 세팅이 되어있다 설정을 바꾸고 싶으면 set으로, 조회는 select로 가능하다 encryption 모드는 정해져 있는 것이 아니면 에러를 주기 때문에 이것저것 넣어도 맞는 모드만 들어간다 SET @@block_encryption_mode='aes-256-ecb'; AES 암호화 중 제일 간단한 ecb 모드인 경우 Padding 설정도 없고 IV도 없어서 MySQL에서도 간단히 볼 수 있다 (내경우!) Java 암호화코드 public static Strin..
개발/ETC
2023. 9. 6. 19:24