请用代码实现前端Vue RSA加密,后端java解密
时间: 2024-01-23 11:02:40 浏览: 146
rsa前端加密,java后台解密
5星 · 资源好评率100%
前端Vue RSA加密示例代码如下:
```javascript
前端Vue RSA加密
import JSEncrypt from 'jsencrypt'
// 创建RSA加密实例
const encrypt = new JSEncrypt()
// 设置RSA公钥
const publicKey = 'YOUR_RSA_PUBLIC_KEY'
encrypt.setPublicKey(publicKey)
// 要加密的数据
const data = 'YOUR_DATA_TO_ENCRYPT'
// 使用RSA公钥进行加密
const encryptedData = encrypt.encrypt(data)
// 将加密后的数据发送到后端进行解密
```
后端Java解密示例代码如下:
```java
import java.security.KeyFactory;
import java.security.PrivateKey;
import java.security.spec.PKCS8EncodedKeySpec;
import javax.crypto.Cipher;
import org.apache.commons.codec.binary.Base64;
public class RSADecrypt {
public static String decrypt(String encryptedData, String privateKeyStr) throws Exception {
// 将Base64编码后的私钥字符串转换为PrivateKey对象
byte[] privateKeyBytes = Base64.decodeBase64(privateKeyStr);
PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(privateKeyBytes);
KeyFactory keyFactory = KeyFactory.getInstance("RSA");
PrivateKey privateKey = keyFactory.generatePrivate(keySpec);
// 使用私钥进行解密
Cipher cipher = Cipher.getInstance("RSA");
cipher.init(Cipher.DECRYPT_MODE, privateKey);
byte[] encryptedBytes = Base64.decodeBase64(encryptedData);
byte[] decryptedBytes = cipher.doFinal(encryptedBytes);
// 返回解密后的数据
return new String(decryptedBytes);
}
}
```
请将 `YOUR_RSA_PUBLIC_KEY` 替换为你的RSA公钥,然后在前端将加密后的数据发送到后端,后端调用 `RSADecrypt.decrypt()` 方法进行解密,并将 `YOUR_DATA_TO_ENCRYPT` 替换为你要加密的数据。
阅读全文