博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java DES
阅读量:6474 次
发布时间:2019-06-23

本文共 465 字,大约阅读时间需要 1 分钟。

public static byte[] encryptProcess(String paramString) throws Exception {

Cipher localCipher = Cipher.getInstance("DES/CBC/PKCS5Padding");

DESKeySpec localDESKeySpec = new DESKeySpec("key".getBytes("UTF-8"));//字符串
localCipher.init(1, SecretKeyFactory.getInstance("DES").generateSecret(localDESKeySpec), new IvParameterSpec(new byte[] { })); 8位byte
return localCipher.doFinal(paramString.getBytes("UTF-8"));
}

转载于:https://www.cnblogs.com/tester-huang/p/5531959.html

你可能感兴趣的文章
30天30个Golang程序学习(一):格式化输出
查看>>
Ceisum官方教程1 -- 开始
查看>>
[20171225]变态的windows批处理4.txt
查看>>
树形控件(CTreeCtrl和CTreeView)
查看>>
*循环单链表
查看>>
杭电3371--Connect the Cities(最小生成树)
查看>>
Codeforces Round #564 (Div. 2) A. Nauuo and Votes
查看>>
linux 下 nginx的负载均衡
查看>>
lua 2
查看>>
linux php多版本
查看>>
06任务开启线程task, 任务开启不能带参数
查看>>
bootstrap
查看>>
1592: [Usaco2008 Feb]Making the Grade 路面修整
查看>>
对GCDAsyncSocket第三方的封装
查看>>
[译] Flutter 从 0 到 1
查看>>
从is(":checked")说起
查看>>
C语言 高斯-若尔当消元法
查看>>
3.SpringMVC介绍
查看>>
SQL Server Governor: The unknown hero
查看>>
Python学习(三) 输出任意格式的字符串以及字符串的切片
查看>>