작성
·
250
1
강사님 안녕하세요!! 암호화 진행하는 JasyptTest 테스트 클래스에 대해 궁금한 점이 있습니다.
현재 이 파일에 vmOptions에 지정한 비밀번호 값이 들어가 있게 되는데, 이 파일을 깃허브에 올리려면 암호화를 진행해야 할 것 같아 질의드립니다.
public class JasyptTest {
@Value("${jasypt.password}")
private String password;
@Test
public void jasyptTest() {
// String password = "sakncksjallkasdkl#$@^#*asdsiajodias2737"; //vmOptions에 넣어둔 값으로 설정
PooledPBEStringEncryptor encryptor = new PooledPBEStringEncryptor();
encryptor.setPoolSize(4);
encryptor.setPassword(password);
encryptor.setAlgorithm("PBEWithMD5AndTripleDES");
String content = "wjdehdrbtlsrjsdndleoruagkgjswlsrlachdldbdkstjchlrhdhfgksgoehekemfakanflwkfgktlrlfqkfkrpTtmqslek"; // 암호화 할 내용
String encryptedContent = encryptor.encrypt(content); // 암호화
String decryptedContent = encryptor.decrypt(encryptedContent); // 복호화
System.out.println("Enc : " + encryptedContent + ", Dec: " + decryptedContent);
}
}
이런식으로 코드를 작성하게 되면 문제가 없지 않을까 생각이 되는데, 맞을까요?