Fix javadoc
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / openecomp / mso / bpmn / common / util / CryptoUtils.java
index 5972c76..2ad1e30 100644 (file)
@@ -38,11 +38,10 @@ public class CryptoUtils {
     public static final String AES = "AES";\r
 \r
     /**\r
-    * encrypt a value and generate a keyfile\r
+     * encrypt a value and generate a keyfile\r
      * if the keyfile is not found then a new one is created\r
-    * @throws GeneralSecurityException\r
-     * @throws IOException\r
-     */\r
+     * @throws GeneralSecurityException\r
+     * */\r
     public static String encrypt(String value, String keyString) throws GeneralSecurityException\r
     {\r
         SecretKeySpec sks = getSecretKeySpec(keyString);\r
@@ -53,9 +52,8 @@ public class CryptoUtils {
     }\r
 \r
     /**\r
-    * decrypt a value\r
+     * decrypt a value\r
      * @throws GeneralSecurityException\r
-     * @throws IOException\r
      */\r
     public static String decrypt(String message, String keyString) throws GeneralSecurityException\r
     {\r