RSA公钥加密

package com.business.utils;




import java.io.BufferedReader;
import java.io.FileReader;
import java.security.KeyFactory;
import java.security.NoSuchAlgorithmException;
import java.security.PublicKey;

import java.security.spec.X509EncodedKeySpec;


import javax.crypto.Cipher;
import javax.crypto.NoSuchPaddingException;




























import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;




public class RSAUtil {               
/**
* 公钥加密
* @param publicKeyFile 公钥文件地址
* @param content 要加密的明文
* @return
*/
public static String encryptByPublicKey(String publicKeyFile,String content){
/*System.out.println("好ok");*/
try {
//读取pem证书
BufferedReader br=new BufferedReader(new FileReader(publicKeyFile)); 
String brStr=br.readLine();
String str="";//将在pem文件中读取str
brStr=br.readLine();
while(brStr.charAt(0)!='-'){
str+=brStr+"\r";
brStr=br.readLine();
}
br.close();//关闭
/*System.out.println("str:"+str);*/
//将pem证书中读取到的内容str进行BASE64解码(编码转换)
BASE64Decoder base64decoder=new BASE64Decoder();
byte[] keyByte=base64decoder.decodeBuffer(str.toString());
//生成公钥
KeyFactory keyFactory=KeyFactory.getInstance("RSA");
//
X509EncodedKeySpec keySpec=new X509EncodedKeySpec(keyByte) ;
/*PKCS8EncodedKeySpec keySpec=new PKCS8EncodedKeySpec(keyByte);*/
PublicKey publicKey=keyFactory.generatePublic(keySpec);//得到公钥
/*得到Cipher对象来实现对源数据的RSA加密*/
Cipher cipher=Cipher.getInstance("RSA");
cipher.init(Cipher.ENCRYPT_MODE, publicKey);
/*执行加密操作*/
byte[]  enBytes=cipher.doFinal(content.getBytes()); 
BASE64Encoder encoder=new BASE64Encoder();
//将加密的参数返回
return encoder.encode(enBytes);
/*return (new BASE64Encoder()).encode(enBytes);*/
} catch (NoSuchAlgorithmException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (NoSuchPaddingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}catch (Exception e) {
// TODO: handle exception
}
return null;
}

}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值