Merge ssl password
[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 import org.onap.aaf.cadi.Symm;
33 import org.onap.clamp.clds.util.ResourceFileUtil;
34
35 /**
36  * PassDecoder for decrypting the truststore and keystore password.
37  */
38 public class PassDecoder {
39     /**
40      * Used to log PassDecoder class.
41      */
42     private static final EELFLogger logger = EELFManager.getInstance().getLogger(PassDecoder.class);
43
44     /**
45      * Decode the password.
46      * @param encryptedPass The encrypted password
47      * @param keyFileIs The key file in InputStream format
48      */
49     public static String decode(String encryptedPass, String keyFile) {
50         if (null == keyFile) {
51             logger.debug("Key file is not defined, thus password will not be decrypted");
52             return encryptedPass;
53         }
54         if (null == encryptedPass) {
55             logger.error("Encrypted password is not defined");
56             return null;
57         }
58         try {
59             InputStream is;
60             if (keyFile.contains("classpath:")) {
61                 is = ResourceFileUtil.getResourceAsStream(keyFile.replaceAll("classpath:", ""));
62             } else {
63                 File key = new File(keyFile);
64                 is = new FileInputStream(key);
65             }
66             Symm symm = Symm.obtain(is);
67
68             return symm.depass(encryptedPass);
69         } catch (IOException e) {
70             logger.error("Exception occurred during the key decryption", e);
71             return null;
72         }
73     }
74 }