文件名称:Android代码-android
文件大小:2KB
文件格式:ZIP
更新时间:2022-08-27 13:04:55
Android代码
package com.example.liu.myapplication; /** Created by liu on 2015/7/27. */ import java.security.Key; import java.security.spec.AlgorithmParameterSpec; import javax.crypto.Cipher; import javax.crypto.SecretKeyFactory; import javax.crypto.spec.DESKeySpec; import javax.crypto.spec.IvParameterSpec; import android.util.Base64; public class DesUtils { public static final String ALGORITHM_DES = "DES/CBC/PKCS5Padding"; /** DES算法,加密 @param data 待加密字符串 @param key 加密私钥,长度不能够小于8位 @return 加密后的字节数组,一般结合Bas
【文件预览】:
android-master
----DesUtils.java(3KB)
----README.md(3KB)