没有合适的资源?快使用搜索试试~ 我知道了~
Android 客户端RSA加密的实现方法 针对java后端进行的RSA加密,android客户端进行解密,结果是部分乱码的问题: 注意两点,编码问题和客户端使用的算法问题 即:都使用UTF-8编码,Base64使用一致,另外,使用下面的代码在后端和移动端解密只有一点不同: 移动端使用 Cipher cipher = Cipher.getInstance(RSA/ECB/PKCS1Padding); 后端使用 Cipher cipher = Cipher.getInstance(RSA); 其他地方都不需要改动 package rsa; import android.ut
资源推荐
资源详情
资源评论
Android 客户端客户端RSA加密的实现方法加密的实现方法
Android 客户端客户端RSA加密的实现方法加密的实现方法
针对java后端进行的RSA加密,android客户端进行解密,结果是部分乱码的问题:
注意两点,编码问题和客户端使用的算法问题
即:都使用UTF-8编码,Base64使用一致,另外,使用下面的代码在后端和移动端解密只有一点不同:
移动端使用
Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
后端使用
Cipher cipher = Cipher.getInstance("RSA");
其他地方都不需要改动
package rsa;
import android.util.Base64;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
//import org.apache.commons.codec.binary.Base64;
/** *//**
* <p>
* BASE64编码解码工具包
* </p>
* @author IceWee
* @date 2012-5-19
* @version 1.0
*/
public class Base64Utils {
/** *//**
* 文件读取缓冲区大小
*/
private static final int CACHE_SIZE = 1024;
/** *//**
* <p>
* BASE64字符串解码为二进制数据
* </p>
*
* @param base64
* @return
* @throws Exception
*/
public static byte[] decode(String base64) throws Exception {
return Base64.decode(base64.getBytes(), Base64.DEFAULT);
}
/** *//**
* <p>
* 二进制数据编码为BASE64字符串
* </p>
*
* @param bytes
* @return
* @throws Exception
*/
public static String encode(byte[] bytes) throws Exception {
return new String(Base64.encode(bytes, Base64.DEFAULT));
}
/**
*
* @param str
* @return
* @throws Exception
*/
public static String encode(String str) throws Exception {
byte[] bytes = str.getBytes("utf-8");
return encode(bytes);
}
/** *//**
* <p>
* 将文件编码为BASE64字符串
* </p>
* <p>
* 大文件慎用,可能会导致内存溢出
* </p>
*
* @param filePath 文件绝对路径
* @return
* @throws Exception
*/
public static String encodeFile(String filePath) throws Exception {
byte[] bytes = fileToByte(filePath);
return encode(bytes);
}
/** *//**
* <p>
* BASE64字符串转回文件
* </p>
*
* @param filePath 文件绝对路径
* @param base64 编码字符串
* @throws Exception
*/
public static void decodeToFile(String filePath, String base64) throws Exception {
byte[] bytes = decode(base64);
byteArrayToFile(bytes, filePath);
}
/** *//**
* <p>
* 文件转换为二进制数组
* </p>
*
* @param filePath 文件路径
* @return
* @throws Exception
*/
public static byte[] fileToByte(String filePath) throws Exception {
byte[] data = new byte[0];
File file = new File(filePath);
if (file.exists()) {
FileInputStream in = new FileInputStream(file);
ByteArrayOutputStream out = new ByteArrayOutputStream(2048);
byte[] cache = new byte[CACHE_SIZE];
int nRead = 0;
while ((nRead = in.read(cache)) != -1) {
out.write(cache, 0, nRead);
out.flush();
}
out.close();
in.close();
剩余7页未读,继续阅读
资源评论
weixin_38651929
- 粉丝: 4
- 资源: 908
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 医疗图像处理:乳腺癌细胞基于RGB-HSV彩色空间模型的高效识别
- 技术资料分享OV7670 software application note很好的技术资料.zip
- 精臣标签机老版本驱动程序
- 第4章 第3讲 随机变量的方差 .pdf
- 技术资料分享OmniVision Technologies Seril Camera Control Bus(SCCB)
- 基于FPGA的智能车牌检测系统设计与实现
- 低照度彩色图像的自适应权重Retinex图像增强算法及其实现
- 基于深度学习的植物图像识别系统
- 技术资料分享nRF24L01中文说明书很好的技术资料.zip
- 技术资料分享NRF24l01模块说明书很好的技术资料.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功