改进配合前端cryptojs进行整合
Licoy opened this issue · 2 comments
Licoy commented
todo
jwencode commented
请问大概什么时候会上线前端加解密的案例?我在使用VUE项目中需要用到,想自己写,但是加密这块不太懂。KeyGenerator generator = KeyGenerator.getInstance("AES"); SecureRandom random = SecureRandom.getInstance("SHA1PRNG"); random.setSeed(password.getBytes()); generator.init(128, random); SecretKey secretKey = generator.generateKey(); byte[] enCodeFormat = secretKey.getEncoded(); SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES"); Cipher cipher = Cipher.getInstance("AES"); cipher.init(type, key);
不知道怎么改为前端js代码。