加密解密MD5,DES

这段代码展示了如何在Java中使用StandardPBEStringEncryptor进行加密和解密操作。它配置了加密算法PBEWithMD5AndDES,并设置了盐值和密码,然后对指定的文本进行加解密处理。
摘要由CSDN通过智能技术生成
//加密
public static void testEncryption(){
    //加密工具
    StandardPBEStringEncryptor encryptor = new StandardPBEStringEncryptor();
    //加密配置
    EnvironmentStringPBEConfig config = new EnvironmentStringPBEConfig();
    //加密算法,写死即可
    config.setAlgorithm("PBEWithMD5AndDES");
    //加密使用salt设置
    config.setPassword("************");
    //应用配置
    encryptor.setConfig(config);
    //需要加密数据
    String plaintext="*********";
    //加密
    String encrypttext=encryptor.encrypt(plaintext);

    System.out.println(plaintext + " : " + encrypttext);
}

//解密
public static void testDecryption(){
    //加密工具
    StandardPBEStringEncryptor encryptor = new StandardPBEStringEncryptor();
    //加密配置
    EnvironmentStringPBEConfig config = new EnvironmentStringPBEConfig();
    //加密算法,写死即可
    config.setAlgorithm("PBEWithMD5AndDES");
    //加密使用salt设置
    config.setPassword("*********");
    //应用配置
    encryptor.setConfig(config);
    //需要加密数据
    String encrypttext="*********";
    //加密
    String plaintext=encryptor.decrypt(encrypttext);

    System.out.println(encrypttext + " : " + plaintext);
}
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值