如何对压缩文件进行加密,是否有对标 Java的CipherOutputStream,通过文件流的形式进行加密,目前看文档https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/crypto-aes-sym-encrypt-decrypt-cbc-V5 没看到对应的介绍。
java代码:
FileInputStream fis = new FileInputStream(zipFilePath);
FileOutputStream fos = new FileOutputStream(targetZipFilePath);
CipherOutputStream cos = new CipherOutputStream(fos, getCipher());
byte[] buffer = new byte[1024];
int length;
while ((length = fis.read(buffer)) > 0) {
cos.write(buffer, 0, length);
}
fis.close();
cos.close();
fos.close();
对文件进行加解密 API地址:https://developer.huawei.com/consumer/cn/doc/best-practices-V5/bpta-app-data-security-V5文件流是Uint8Array的格式,直接导入cipher里正常用就行了。