Merge "Remove the declaration of thrown exception"
authorJonathan Gathman <jonathan.gathman@att.com>
Wed, 4 Sep 2019 18:26:19 +0000 (18:26 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 4 Sep 2019 18:26:19 +0000 (18:26 +0000)
cadi/core/src/main/java/org/onap/aaf/cadi/AES.java

index c4f3d50..4ec5168 100644 (file)
@@ -63,7 +63,7 @@ public class AES implements Encryption {
         return kgen.generateKey();
     }
 
-    public AES(byte[] aeskey, int offset, int len) throws IOException, NoSuchAlgorithmException, NoSuchPaddingException {
+    public AES(byte[] aeskey, int offset, int len){
         aeskeySpec = new SecretKeySpec(aeskey,offset,len,AES);
     }