cn.hutool.crypto.Mode Java Examples

The following examples show how to use cn.hutool.crypto.Mode. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PasswordDecoderFilter.java    From smaker with GNU Lesser General Public License v3.0 5 votes vote down vote up
private static String decryptAES(String data, String pass) {
	AES aes = new AES(Mode.CBC, Padding.NoPadding,
		new SecretKeySpec(pass.getBytes(), KEY_ALGORITHM),
		new IvParameterSpec(pass.getBytes()));

	byte[] result = aes.decrypt(Base64.decode(data.getBytes(StandardCharsets.UTF_8)));
	return new String(result, StandardCharsets.UTF_8);
}
 
Example #2
Source File: HelloWorldController.java    From spring-boot-demo with MIT License 5 votes vote down vote up
@RequestMapping("/test")
public String test(String p1, String p2) {

    AES aes = new AES(Mode.OFB, Padding.NoPadding, p1.getBytes(), "9875462154789536".getBytes());

    String decryptStr = aes.decryptStr(p2, CharsetUtil.CHARSET_UTF_8);
    return decryptStr;
}
 
Example #3
Source File: SysLoginController.java    From hdw-dubbo with Apache License 2.0 5 votes vote down vote up
/**
 * 加密
 * @param data
 * @return
 */
@ApiOperation(value = "加密", notes = "加密")
@ApiImplicitParams({
        @ApiImplicitParam(paramType = "query", name = "data", value = "待加密字符串", required = false, dataType = "String"),
})
@GetMapping("/sys/encrypt")
public String encrypt(String data){
    /** AES加解密 */
    AES aes = new AES(Mode.CBC, Padding.PKCS5Padding, "1234567812345678".getBytes(), "1234567812345678".getBytes());
    // 解密
    String s = aes.encryptBase64(data);
    return s;
}
 
Example #4
Source File: SysLoginController.java    From hdw-dubbo with Apache License 2.0 5 votes vote down vote up
/**
 * 解密
 * @param encrypt
 * @return
 */
private String decrypt(String encrypt) {
    /** AES加解密 */
    AES aes = new AES(Mode.CBC, Padding.PKCS5Padding, "1234567812345678".getBytes(), "1234567812345678".getBytes());
    // 解密
    String s= aes.decryptStr(encrypt).replace("\"", "");
    return s;
}
 
Example #5
Source File: PasswordDecoderFilter.java    From albedo with GNU Lesser General Public License v3.0 5 votes vote down vote up
public static String decryptAes(String data, String pass) {
	AES aes = new AES(Mode.CBC, Padding.NoPadding,
		new SecretKeySpec(pass.getBytes(), KEY_ALGORITHM),
		new IvParameterSpec(pass.getBytes()));
	byte[] result = aes.decrypt(Base64.decode(data.getBytes(StandardCharsets.UTF_8)));
	return new String(result, StandardCharsets.UTF_8);
}