5d261c023abc3715661528afc3ddaffce1d8736d
[clamp.git] / src / main / java / org / onap / clamp / util / PassDecoder.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  */
22
23 package org.onap.clamp.util;
24
25 import com.att.eelf.configuration.EELFLogger;
26 import com.att.eelf.configuration.EELFManager;
27
28 import java.io.File;
29 import java.io.FileInputStream;
30 import java.io.IOException;
31 import java.io.InputStream;
32
33 import org.onap.aaf.cadi.Symm;
34 import org.onap.clamp.clds.util.ResourceFileUtils;
35
36 /**
37  * PassDecoder for decrypting the truststore and keystore password.
38  */
39 public class PassDecoder {
40     /**
41      * Used to log PassDecoder class.
42      */
43     private static final EELFLogger logger = EELFManager.getInstance().getLogger(PassDecoder.class);
44
45     /**
46      * Decode the password.
47      *
48      * @param encryptedPass The encrypted password
49      * @param keyFileName       The key file name in String
50      */
51     public static String decode(String encryptedPass, String keyFileName) {
52         if (null == keyFileName) {
53             logger.debug("Key file is not defined, thus password will not be decrypted");
54             return encryptedPass;
55         }
56         if (null == encryptedPass) {
57             logger.error("Encrypted password is not defined");
58             return null;
59         }
60         try {
61             return Symm.obtain(ResourceFileUtils.getResourceAsStream(keyFileName)).depass(encryptedPass);
62         } catch (IOException e) {
63             logger.error("Exception occurred during the key decryption", e);
64             return null;
65         }
66     }
67 }