da1f177ea22474f7078a7ec587d78a77681ec504
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / openecomp / mso / bpmn / common / util / CryptoHandler.java
1 /*-\r
2  * ============LICENSE_START=======================================================\r
3  * OPENECOMP - MSO\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ============LICENSE_END=========================================================\r
19  */\r
20 \r
21 package org.openecomp.mso.bpmn.common.util;\r
22 \r
23 import java.security.GeneralSecurityException;\r
24 \r
25 public class CryptoHandler implements ICryptoHandler {\r
26 \r
27         private static String msoKey = "aa3871669d893c7fb8abbcda31b88b4f";\r
28         //private static String msoAaiPwd = "mso0206";\r
29         private static String msoAaiEncryptedPwd = "C1FC4A39E16419DD41DFC1212843F440";\r
30 \r
31         public String getMsoAaiPassword() {\r
32                 try {\r
33                         return CryptoUtils.decrypt(msoAaiEncryptedPwd, msoKey);\r
34                 } catch (GeneralSecurityException e) {\r
35                         return null;\r
36                 }\r
37         }\r
38 \r
39 \r
40         public String encryptMsoPassword(String plainMsoPwd) {\r
41                 try {\r
42                         return CryptoUtils.encrypt(plainMsoPwd, msoKey);\r
43                 } catch (GeneralSecurityException e) {\r
44                         return null;\r
45                 }\r
46         }\r
47 \r
48 \r
49         public String decryptMsoPassword(String encryptedPwd) {\r
50                 try {\r
51                         return CryptoUtils.decrypt(encryptedPwd, msoKey);\r
52                 } catch (GeneralSecurityException e) {\r
53                         return null;\r
54                 }\r
55         }\r
56 \r
57 }\r