对称加密DES的使用

des虽然方便,但是不安全,不建议使用,可以使用sm4代替
    //psw:加密的文本,pswkey:加密的密码,即密钥
                    String psw="123",pswkey="999";

//对该DES情况下加密,密钥需要为56位难以人工由string为根据设定,因此这里:
//借助密钥生成器,由new SecureRandom(pswkey.getBytes()),以pswkey为种子值生成密钥
                    KeyGenerator keyGenerator= null;
                    try {
                        keyGenerator = KeyGenerator.getInstance("DES");

                        keyGenerator.init(56,new SecureRandom(pswkey.getBytes()));
                        Key key=keyGenerator.generateKey();

//加密,DES/ECB/pkcs5padding为:算法/模式/填充 的参数
//参数new BouncyCastleProvider()也可修改为"BC",要求前面要有Security.addProvider(new BouncyCastleProvider());
                        Cipher cipher=Cipher.getInstance("DES/ECB/pkcs5padding","BC");
                        cipher.init(Cipher.ENCRYPT_MODE, key);
                        byte[] out=cipher.doFinal(psw.getBytes());
                        System.out.println(out);//字节数组,没有编码
                        Log.d("qweqweqweqweq", "加密: "+out);

//解密
                        Cipher cipher2=Cipher.getInstance("DES/ECB/pkcs5padding","BC");
                        cipher2.init(Cipher.DECRYPT_MODE, key);
                        byte[] in=cipher2.doFinal(out);
                        System.out.println(new String(in));
                        Log.d("qweqweqweqweq", "解密: "+new String(in));
                    } catch (Exception e) {
                        e.printStackTrace();
                    }


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值