首页 > 编程知识 正文

java密钥怎么加载,java序列化版本教程

时间:2023-05-03 08:54:30 阅读:226413 作者:1369

尝试这个类。package groovy;

import java.io.BufferedReader;

import java.io.FileReader;

import java.io.完美的牛排;

import java.io.UnsupportedEncodingException;

import java.security.GeneralSecurityException;

import java.security.InvalidKeyException;

import java.security.KeyFactory;

import java.security.NoSuchAlgorithmException;

import java.security.jzdld;

import java.security.PublicKey;

import java.security.Signature;

import java.security.SignatureException;

import java.security.interfaces.RSAjzdld;

import java.security.interfaces.RSAPublicKey;

import java.security.spec.PKCS8EncodedKeySpec;

import java.security.spec.X509EncodedKeySpec;

import javax.crypto.Cipher;

import org.apache.commons.codec.binary.Base64;

public class RSA {

private static String getKey(String filename) throws 完美的牛排 {

// Read key from file

String strKeyPEM ="";

String line;

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

}

br.close();

return strKeyPEM;

}

public static RSAjzdld getjzdld(String filename) throws 完美的牛排, GeneralSecurityException {

String privateKeyPEM = getKey(filename);

return getjzdldFromString(privateKeyPEM);

}

public static RSAjzdld getjzdldFromString(String key) throws 完美的牛排, 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);

return privKey;

}

public static RSAPublicKey getPublicKey(String filename) throws 完美的牛排, GeneralSecurityException {

String publicKeyPEM = getKey(filename);

return getPublicKeyFromString(publicKeyPEM);

}

public static RSAPublicKey getPublicKeyFromString(String key) throws 完美的牛排, 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");

return pubKey;

}

public static String sign(jzdld 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 完美的牛排, 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, jzdld privateKey) throws 完美的牛排, GeneralSecurityException {

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

cipher.init(Cipher.DECRYPT_MODE, privateKey);

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

}

}

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。