Merge "Reorder modifiers"
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / openecomp / mso / bpmn / common / util / CryptoHandler.java
1 /*-\r
2  * ============LICENSE_START=======================================================\r
3  * ONAP - SO\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.\r
6  * Copyright (C) 2017 Huawei Technologies Co., Ltd. All rights reserved.\r
7  * ================================================================================\r
8  * Licensed under the Apache License, Version 2.0 (the "License");\r
9  * you may not use this file except in compliance with the License.\r
10  * You may obtain a copy of the License at\r
11  * \r
12  *      http://www.apache.org/licenses/LICENSE-2.0\r
13  * \r
14  * Unless required by applicable law or agreed to in writing, software\r
15  * distributed under the License is distributed on an "AS IS" BASIS,\r
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17  * See the License for the specific language governing permissions and\r
18  * limitations under the License.\r
19  * ============LICENSE_END=========================================================\r
20  */\r
21 \r
22 package org.openecomp.mso.bpmn.common.util;\r
23 import java.io.IOException;\r
24 import java.security.GeneralSecurityException;\r
25 import org.openecomp.mso.logger.MsoLogger;\r
26 import java.util.Properties;\r
27 \r
28 public class CryptoHandler implements ICryptoHandler {\r
29         private static final MsoLogger LOGGER = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL);\r
30 \r
31         private static String msoKey = "aa3871669d893c7fb8abbcda31b88b4f";\r
32         private static String msoAaiEncryptedPwd;\r
33 \r
34         @Override\r
35         public String getMsoAaiPassword() {\r
36         Properties keyProp = new Properties ();\r
37                 try {\r
38                 keyProp.load (Thread.currentThread ().getContextClassLoader ().getResourceAsStream ("urn.properties"));\r
39                         msoAaiEncryptedPwd =(String) keyProp.get ("mso.AaiEncrypted.Pwd");\r
40                         return CryptoUtils.decrypt(msoAaiEncryptedPwd, msoKey);\r
41                 } catch (GeneralSecurityException | IOException e) {\r
42                         LOGGER.debug("GeneralSecurityException :",e);\r
43                         return null;\r
44                 }\r
45         }\r
46 \r
47 \r
48         @Override\r
49         public String encryptMsoPassword(String plainMsoPwd) {\r
50                 try {\r
51                         return CryptoUtils.encrypt(plainMsoPwd, msoKey);\r
52                 } catch (GeneralSecurityException e) {\r
53                         LOGGER.debug("GeneralSecurityException :",e);\r
54                         return null;\r
55                 }\r
56         }\r
57 \r
58         @Override\r
59         public String decryptMsoPassword(String encryptedPwd) {\r
60                 try {\r
61                         return CryptoUtils.decrypt(encryptedPwd, msoKey);\r
62                 } catch (GeneralSecurityException e) {\r
63                         LOGGER.debug("GeneralSecurityException :",e);\r
64                         return null;\r
65                 }\r
66         }\r
67 \r
68 }\r