RSA 非对称加密解密简单实现方法
package com.vguang.legalheadlines.law.controller;
import cn.hutool.crypto.asymmetric.KeyType;
import cn.hutool.crypto.asymmetric.RSA;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
/**
* @author LiWenBin
* RSA非堆成加密方法
*/
public class RSAController {
@Value("${pcPrivateKey:}")
private String pcPrivateKey;
@Value("${pcPublicKey:}")
共有 0 条评论