diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2018-03-08 07:36:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-08 07:36:44 +0000 |
commit | e3c81241a00ed6f0effb4a15919091fab3054c24 (patch) | |
tree | b54df9db0de094fbaa18cf09c6ace9f67b1bfcd7 /bpmn/MSOCommonBPMN/src/main/java/org | |
parent | 879b6fcf5b4dad741c4b79ac50d3971cb1e181b6 (diff) | |
parent | 9975687aa1294cca49b62acfc63a44da1fd75836 (diff) |
Merge "Remove unused code"
Diffstat (limited to 'bpmn/MSOCommonBPMN/src/main/java/org')
-rw-r--r-- | bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/util/CryptoUtils.java | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/util/CryptoUtils.java b/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/util/CryptoUtils.java index 2ad1e30316..846b87aba8 100644 --- a/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/util/CryptoUtils.java +++ b/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/util/CryptoUtils.java @@ -94,23 +94,5 @@ public class CryptoUtils { return b;
}
- /**
- * Not Used...
- *
- * Call Rttp utility jar to encrypt pwd
- * @param clearPassword
- * @return
- * @throws GeneralSecurityException
- * @throws Exception
- *
- public static String encryptRttpPwd(String clearPassword) throws GeneralSecurityException {
- try {
- return RttpBasicAuth.encrypt(clearPassword);
- } catch (Exception e) {
- // wrap generic exception
- throw new GeneralSecurityException(e);
- }
- }
- */
}
|