암복호화 함수 이름 변경 및 단위테스트 추가
- 클래스이름 오타 수정 - Parser 단위 테스트 추가
This commit is contained in:
+6
-6
@@ -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;
|
||||
}
|
||||
|
||||
+2
-2
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user