Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: ate static Key generateKey() throws Exception { Key key = new SecretKeySpec(keyValue, ALGO); return key; } } package encript; public class Checker { public static void main(String[] args) throws Exception { String password = "mypassword"; String passwordEnc = AESencrp.encrypt(password); String passwordDec = AESencrp.decrypt(passwordEnc); System.out.println("Plain Text : " + password); System.out.println("Encrypted [...]
↧