029f55d6954b218bbd733d98a0f42c5cb6f8e9f1
[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.ResourceFileUtil;
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 keyFile       The key file name in String
50      */
51     public static String decode(String encryptedPass, String keyFile) {
52         if (null == keyFile) {
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             InputStream is;
62             if (keyFile.contains("classpath:")) {
63                 is = ResourceFileUtil.getResourceAsStream(keyFile.replaceAll("classpath:", ""));
64             } else {
65                 File key = new File(keyFile);
66                 is = new FileInputStream(key);
67             }
68             Symm symm = Symm.obtain(is);
69
70             return symm.depass(encryptedPass);
71         } catch (IOException e) {
72             logger.error("Exception occurred during the key decryption", e);
73             return null;
74         }
75     }
76 }