对文档进行加密操作,只有经过系统解密后才能进行查看文档内容
这里使用hutool工具类提供的SM2方法,首先引入pom.xml依赖
<!--工具类-->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.6.5</version>
</dependency>
生成SM2密钥对
SM2 sm2 = new SM2();
String privateKeyBase64 = sm2.getPrivateKeyBase64();
String publicKeyBase64 = sm2.getPublicKeyBase64();
FileUtils工具类,进行byte数组和文件的转换
package com.smile.common.utils.file;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.io.IOUtils;
import java.io.*;
/**
* 文件处理工具类
*
* @author wujie
*/
@Slf4j
public class FileUtils {
/**
* 获得指定文件的byte数组
*
* @param filePath 文件路径
* @return 字节数组
*/
public static byte[] fileToByte(String filePath) {
byte[] buffer = null;
try {
File file = new File(filePath);
FileInputStream fis = new FileInputStream(file);
ByteArrayOutputStream bos = new ByteArrayOutputStream(1000);
byte[] b = new byte[1024];
int n;
while ((n = fis.read(b)) != -1) {
bos.write(b, 0, n);
}
fis.close();
bos.close();
buffer = bos.toByteArray();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return buffer;
}
/**
* 根据byte数组,生成文件
* @param bfile 字节数组
* @param filePath 文件路径
* @param fileName 文件名
*/
public static void byteToFile(byte[] bfile, String filePath, String fileName) {
BufferedOutputStream bos = null;
FileOutputStream fos = null;
File file = null;
try {
File dir = new File(filePath);
if (!dir.exists() && dir.isDirectory()) {
dir.mkdirs();
}
file = new File(filePath + "\" + fileName);
fos = new FileOutputStream(file);
bos = new BufferedOutputStream(fos);
bos.write(bfile);
} catch (Exception e) {
e.printStackTrace();
} finally {
IOUtils.closeQuietly(bos);
IOUtils.closeQuietly(fos);
}
}
}
EncryptionTools 加解密工具类,这里用的静态代码块,加载已存在的密钥对,不用每次都生成新的密钥