암복호화 함수 이름 변경 및 단위테스트 추가

- 클래스이름 오타 수정
- Parser 단위 테스트 추가
This commit is contained in:
curry772
2026-06-01 08:58:08 +09:00
parent e2950a339f
commit eff7b31490
4 changed files with 254 additions and 12 deletions
@@ -13,17 +13,17 @@ import com.eactive.eai.common.security.CryptoModuleService;
/**
* JEP 트랜스포머 함수 DJB ERP 연동 복호화.
*
* 사용법: DJBErpDecryt(encBase64, moduleName) DJBErpDecryt(encBase64, moduleName,
* groupSeq)
* 사용법: DJBErpDecryt(encBase64, moduleName)
*
* 파라미터: encBase64 : Base64 인코딩된 암호문 (String) moduleName : DB에 등록된 암호화 모듈명
* (String) groupSeq : 도출용 그룹 시퀀스 (String, 선택). 미전달 context로 호출.
* 파라미터:
* encBase64 : Base64 인코딩된 암호문
* moduleName : DB에 등록된 암호화 모듈명
*
* 반환값: 복호화된 평문 (String)
*/
public class DJBDecryt extends PostfixMathCommand {
public class DJBDecrypt extends PostfixMathCommand {
public DJBDecryt() {
public DJBDecrypt() {
numberOfParameters = -1;
}
@@ -21,9 +21,9 @@ import com.eactive.eai.common.security.CryptoModuleService;
*
* 반환값: Base64 인코딩된 암호문 (String)
*/
public class DJBEncryt extends PostfixMathCommand {
public class DJBEncrypt extends PostfixMathCommand {
public DJBEncryt() {
public DJBEncrypt() {
numberOfParameters = -1;
}