/* * Copyright 2008-2009 MOPAS(Ministry of Public Administration and Security). * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package egovframework.rte.fdl.crypto.impl; import java.math.BigDecimal; import org.apache.log4j.Logger; import org.jasypt.util.password.ConfigurablePasswordEncryptor; import egovframework.rte.fdl.crypto.CryptoLog; import egovframework.rte.fdl.crypto.EgovEDcryptionService; import egovframework.rte.fdl.crypto.exception.UnsupportedException; /** * Number 암호화 구현 Class * @author Password 암호화 구현 Class * @since 2009. 03.12 * @version 1.0 * @see <pre> * == 개정이력(Modification Information) == * * 수정일 수정자 수정내용 * --------- --------- ------------------------------- * 2009. 03.12 김종호 최초생성 * * </pre> */ public class EgovEDcryptionPasswdServlceImpl implements EgovEDcryptionService { private static Logger logger = CryptoLog.getLogger(EgovEDcryptionPasswdServlceImpl.class); /** Password 암복호화 Class */ ConfigurablePasswordEncryptor passwordEncryptor = null; /** 패스워드 확인 문자열 */ String orign_pwd = null; /** 패스워드 확인 문자열 */ String new_pwd = null; /** 파일명 문자열 */ String str_or_file = ""; /** 암호화 결과 리턴 바이트 배열*/ byte[] rt_buf = null; /** 알고리즘 문자열 */ String algorithm = null; /** Password 암호화 여부 */ boolean isplan = false; /** 암호화 호출 횟수 */ int callcnt = 0; /** * EgovEDcryptionPasswdServlceImpl 생성자 */ public EgovEDcryptionPasswdServlceImpl() { passwordEncryptor = new ConfigurablePasswordEncryptor(); } /** * 복호화 * @return 복호화된 데이터 바이트 배열 */ public byte[] decrypt() { // TODO Auto-generated method stub try { throw new UnsupportedException("지원하지 않는 메소드 입니다."); }catch(UnsupportedException e) { e.printStackTrace(); } return null; } /** * 암호화 * @return 암호화된 데이터 바이트 배열 */ public byte[] encrypt() { // TODO Auto-generated method stub if(callcnt <= 0) { logger.debug("IN callcnt: "+callcnt); if(!algorithm.equals("")) passwordEncryptor.setAlgorithm(algorithm); else passwordEncryptor.setAlgorithm("SHA-1"); passwordEncryptor.setPlainDigest(isplan); } String rtn_str = passwordEncryptor.encryptPassword(str_or_file); rt_buf = rtn_str.getBytes(); callcnt ++; logger.debug("callcnt : "+callcnt); return rt_buf; } /** * Number 암호화 * @param bigdecimal - 암호화 할 Number * @return 암호화된 bigdecimal */ public BigDecimal encrypt(BigDecimal bigdecimal) { // TODO Auto-generated method stub try { throw new UnsupportedException("지원하지 않는 메소드 입니다."); }catch(UnsupportedException e) { e.printStackTrace(); } return null; } /** * 복호화 * @param bigdecimal - 복호화 할 Number * @return 복호화된 bigdecimal */ public BigDecimal decrypt(BigDecimal bigdecimal) { // TODO Auto-generated method stub try { throw new UnsupportedException("지원하지 않는 메소드 입니다."); }catch(UnsupportedException e) { e.printStackTrace(); } return null; } /** * 복호화전 패스워드 확인 * @param pwd - 확인할 패스워드 */ public void getComformStr(String pwd) throws UnsupportedException { // TODO Auto-generated method stub try { throw new UnsupportedException("지원하지 않는 메소드 입니다."); }catch(UnsupportedException e) { e.printStackTrace(); } } /** * 알고리즘 설정 * @param algorithm - 알고리즘 명 */ public void setAlgorithm(String algorithm) throws UnsupportedException { // TODO Auto-generated method stub this.algorithm = algorithm; } /** * 암호화 문자열 또는 파일명 저장 * @param iswhich - 문자열 또는 바이너리 암호화 구분 * @param str_or_file - 암호화 할 문자열 또는 파일명 */ public void setConfig(int is_which, String str_or_file) throws UnsupportedException { // TODO Auto-generated method stub this.str_or_file = str_or_file; } /** * 암호화전 패스워드 확인 * @param pwd - 확인할 패스워드 */ public void setComformStr(String pwd) throws UnsupportedException { // TODO Auto-generated method stub try { throw new UnsupportedException("지원하지 않는 메소드 입니다."); }catch(UnsupportedException e) { e.printStackTrace(); } } /** * 패스워드 암호화 여부선택 * @param isplan - 선택여부 */ public void setPlainDigest(boolean isplan)throws UnsupportedException { this.isplan = isplan; } /** * 암호화된 패스워드와 평문 패스워드 비교 * @param planPD - 평문 패스워드 * @param cryptoPD - 암호화된 패스워드 * @return 비교결과 */ public boolean checkPassword(String planPD,byte[] cryptoPD) { String tmp_str = new String(cryptoPD); return passwordEncryptor.checkPassword(planPD, tmp_str); } /** * 암호화 문자열 또는 파일명 저장 * @param iswhich - 문자열 또는 바이너리 암호화 구분 * @param str_or_file - 암호화 할 byte 배열 */ public void setARIAConfig(int is_which, byte[] p_arr) { // TODO Auto-generated method stub try { throw new UnsupportedException("지원하지 않는 메소드 입니다."); }catch(UnsupportedException e) { e.printStackTrace(); } } /** * Aria Number 암호화 * @param bigdecimal - 암호화 할 Number * @return 암호화된 데이터 바이트배열 */ public byte[] Aria_encrypt(BigDecimal bigdecimal) { try { throw new UnsupportedException("지원하지 않는 메소드 입니다."); }catch(UnsupportedException e) { e.printStackTrace(); } return null; } /** * Aria Number 복호화 * @param endecimal - 복호화 할 Number byte 배열 * @return 복호화된 BigDecimal */ public BigDecimal Aria_decrypt(byte[] endecimal) { try { throw new UnsupportedException("지원하지 않는 메소드 입니다."); }catch(UnsupportedException e) { e.printStackTrace(); } return null; } }