2000字范文,分享全网优秀范文,学习好帮手!
2000字范文 > java怎么读取pem文件格式_如何读取. pem 文件获得私钥和公钥_java_酷徒编程知识库...

java怎么读取pem文件格式_如何读取. pem 文件获得私钥和公钥_java_酷徒编程知识库...

时间:2019-05-24 08:37:39

相关推荐

java怎么读取pem文件格式_如何读取. pem 文件获得私钥和公钥_java_酷徒编程知识库...

尝试这个类。package groovy;

import java.io.BufferedReader;

import java.io.FileReader;

import java.io.IOException;

import java.io.UnsupportedEncodingException;

import java.security.GeneralSecurityException;

import java.security.InvalidKeyException;

import java.security.KeyFactory;

import java.security.NoSuchAlgorithmException;

import java.security.PrivateKey;

import java.security.PublicKey;

import java.security.Signature;

import java.security.SignatureException;

import java.security.interfaces.RSAPrivateKey;

import java.security.interfaces.RSAPublicKey;

import java.security.spec.PKCS8EncodedKeySpec;

import java.security.spec.X509EncodedKeySpec;

import javax.crypto.Cipher;

import mons.codec.binary.Base64;

public class RSA {

private static String getKey(String filename) throws IOException {

// Read key from file

String strKeyPEM ="";

BufferedReader br = new BufferedReader(new FileReader(filename));

String line;

while ((line = br.readLine()) != null) {

strKeyPEM += line +"n";

}

br.close();

return strKeyPEM;

}

public static RSAPrivateKey getPrivateKey(String filename) throws IOException, GeneralSecurityException {

String privateKeyPEM = getKey(filename);

return getPrivateKeyFromString(privateKeyPEM);

}

public static RSAPrivateKey getPrivateKeyFromString(String key) throws IOException, GeneralSecurityException {

String privateKeyPEM = key;

privateKeyPEM = privateKeyPEM.replace("-----BEGIN PRIVATE KEY-----n","");

privateKeyPEM = privateKeyPEM.replace("-----END PRIVATE KEY-----","");

byte[] encoded = Base64.decodeBase64(privateKeyPEM);

KeyFactory kf = KeyFactory.getInstance("RSA");

PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(encoded);

RSAPrivateKey privKey = (RSAPrivateKey) kf.generatePrivate(keySpec);

return privKey;

}

public static RSAPublicKey getPublicKey(String filename) throws IOException, GeneralSecurityException {

String publicKeyPEM = getKey(filename);

return getPublicKeyFromString(publicKeyPEM);

}

public static RSAPublicKey getPublicKeyFromString(String key) throws IOException, GeneralSecurityException {

String publicKeyPEM = key;

publicKeyPEM = publicKeyPEM.replace("-----BEGIN PUBLIC KEY-----n","");

publicKeyPEM = publicKeyPEM.replace("-----END PUBLIC KEY-----","");

byte[] encoded = Base64.decodeBase64(publicKeyPEM);

KeyFactory kf = KeyFactory.getInstance("RSA");

RSAPublicKey pubKey = (RSAPublicKey) kf.generatePublic(new PKCS8EncodedKeySpec(encoded));

return pubKey;

}

public static String sign(PrivateKey privateKey, String message) throws NoSuchAlgorithmException, InvalidKeyException, SignatureException, UnsupportedEncodingException {

Signature sign = Signature.getInstance("SHA1withRSA");

sign.initSign(privateKey);

sign.update(message.getBytes("UTF-8"));

return new String(Base64.encodeBase64(sign.sign()),"UTF-8");

}

public static boolean verify(PublicKey publicKey, String message, String signature) throws SignatureException, NoSuchAlgorithmException, UnsupportedEncodingException, InvalidKeyException {

Signature sign = Signature.getInstance("SHA1withRSA");

sign.initVerify(publicKey);

sign.update(message.getBytes("UTF-8"));

return sign.verify(Base64.decodeBase64(signature.getBytes("UTF-8")));

}

public static String encrypt(String rawText, PublicKey publicKey) throws IOException, GeneralSecurityException {

Cipher cipher = Cipher.getInstance("RSA");

cipher.init(Cipher.ENCRYPT_MODE, publicKey);

return Base64.encodeBase64String(cipher.doFinal(rawText.getBytes("UTF-8")));

}

public static String decrypt(String cipherText, PrivateKey privateKey) throws IOException, GeneralSecurityException {

Cipher cipher = Cipher.getInstance("RSA");

cipher.init(Cipher.DECRYPT_MODE, privateKey);

return new String(cipher.doFinal(Base64.decodeBase64(cipherText)),"UTF-8");

}

}

所需的jar库"common-codec-1.6 "

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。