实现PDF文档加密,访问需要密码

news/2024/12/4 19:13:52/

01. 背景

今天下午老板神秘兮兮的来问我,能不能做个文档加密功能,就是那种用户下载打开需要密码才能打开的那种效果。boss都发话了,那必须可以。

  • 需求:将 pdf 文档经过加密处理,客户下载pdf文档,打开文档需要密码验证
  • 实现:.net8 + itext7 + 控制台,当然可以做成服务或者 webapi 接口。
  • 加密:共有两个密码,一个是发行密码,通过这个密码可以解锁所有已发行pdf,还一个是用户密码,特定用户只能打开该用户的pdf文档。

02. 创建控制台

1、创建一个控制台应用程序。

 03. 添加NeGet包

dotnet add package itext7
dotnet add itext7.bouncy-castle-adapte

 04. 核心代码

 using iText.Kernel.Pdf;// 获取当前工作目录
string currentDirectory = Environment.CurrentDirectory;
Console.WriteLine("Current Directory: " + currentDirectory);// 构建文件路径
string filePath = System.IO.Path.Combine(currentDirectory, "test.pdf");
Console.WriteLine("File Path: " + filePath);// 检查文件是否存在
if (File.Exists(filePath))
{#region pdf 加密string outputencryptedwordfile = "encrypted_test.pdf";string inputwordfile = "test.pdf";try{// 用户密码和所有者密码byte[] userPassword = System.Text.Encoding.UTF8.GetBytes("123456");byte[] ownerPassword = System.Text.Encoding.UTF8.GetBytes("123456");// 调用加密方法EncryptPdfFile(inputwordfile, outputencryptedwordfile, userPassword, ownerPassword);}catch (Exception ex){Console.WriteLine("加密过程中发生错误: " + ex.Message);}#endregion
}
else
{Console.WriteLine("文件不存在");
}
static void EncryptPdfFile(string inputFile, string outputFile, byte[] userPassword, byte[] ownerPassword)
{// 定义加密权限int permissions = EncryptionConstants.ALLOW_PRINTING | EncryptionConstants.ALLOW_COPY;// 创建 PdfWriter 并设置加密参数WriterProperties writerProperties = new WriterProperties();writerProperties.SetStandardEncryption(userPassword,ownerPassword,permissions,EncryptionConstants.ENCRYPTION_AES_128);// 打开输入 PDF 文件using (PdfReader reader = new PdfReader(inputFile))using (PdfWriter writer = new PdfWriter(outputFile, writerProperties))using (PdfDocument pdfDoc = new PdfDocument(reader, writer)){// 复制页面(如果需要)// for (int i = 1; i <= pdfDoc.GetNumberOfPages(); i++)// {//     pdfDoc.CopyPagesTo(i, i, new PdfDocument(new PdfWriter(new MemoryStream())));// }}
}

 05. 运行效果

 

06. 缺点关注,互粉


http://www.ppmy.cn/news/1552355.html

相关文章

SpringBoot(一)

Springboot(一) 什么是SpringBoot SpringBoot是Spring项目中的一个子工程&#xff0c;与Spring-famework同属于Spring的产品 用一些固定的方式来构建生产级别的Spring应用。SpringBoot推崇约定大于配置的方式以便于能够尽可能快速的启动并运行程序 我们把Spring Boot称为搭建程…

第 41 章 - Go语言 软件工程原则

在软件工程中&#xff0c;有一些广泛接受的原则和最佳实践&#xff0c;它们帮助开发者构建更易于维护、扩展和理解的代码。本章将介绍几个重要的原则&#xff1a;SOLID、DRY&#xff08;Don’t Repeat Yourself&#xff09;、KISS&#xff08;Keep It Simple, Stupid&#xff0…

QT6_UI设计——设置表格

环境&#xff1a;qt6.8 1、放置 双击 2行 、列 设置 3、设置表格内容 读取表格内容 uint16 get_table_value_16_cmd(int row,int column) {if(column<1)return 0;QTableWidgetItem *itemnew QTableWidgetItem;itemui1->tableWidget_2->item(row,column);if(item! nul…

Web安全基础实践

实践目标 &#xff08;1&#xff09;理解常用网络攻击技术的基本原理。&#xff08;2&#xff09;Webgoat实践下相关实验。 WebGoat WebGoat是由著名的OWASP负责维护的一个漏洞百出的J2EE Web应用程序&#xff0c;这些漏洞并非程序中的bug&#xff0c;而是故意设计用来讲授We…

【机器学习】CatBoost 模型实践:回归与分类的全流程解析

一. 引言 本篇博客首发于掘金 https://juejin.cn/post/7441027173430018067。 PS&#xff1a;转载自己的文章也算原创吧。 在机器学习领域&#xff0c;CatBoost 是一款强大的梯度提升框架&#xff0c;特别适合处理带有类别特征的数据。本篇博客以脱敏后的保险数据集为例&#x…

基于 LlamaFactory 的 LoRA 微调模型支持 vllm 批量推理的实现

背景 LlamaFactory 的 LoRA 微调功能非常便捷&#xff0c;微调后的模型&#xff0c;没有直接支持 vllm 推理&#xff0c;故导致推理速度不够快。 LlamaFactory 目前支持通过 VLLM API 进行部署&#xff0c;调用 API 时的响应速度&#xff0c;仍然没有vllm批量推理的速度快。 …

FreeRTOS之ARM CR5栈结构操作示意图

FreeRTOS之ARM CR5栈结构操作示意图 1 FreeRTOS源码下载地址2 ARM CR5栈结构操作宏和接口2.1 portSAVE_CONTEXT宏2.1.1 portSAVE_CONTEXT源码2.1.2 portSAVE_CONTEXT宏操作栈结构变化示意图 2.2 portRESTORE_CONTEXT宏2.2.1 portRESTORE_CONTEXT源码2.2.2 portRESTORE_CONTEXT宏…

Nginx管理维护运维规范

Nginx管理维护运维规范 一、版本约束 软件的不同版本&#xff0c;在使用起来都有可能带来不可预知的影响&#xff0c;因此需要统一整理&#xff0c;固定下来&#xff0c;不允许轻易变更。 在Nginx开源版官网&#xff0c;点击右侧download可以看到各个版本的Nginx&#xff0c;…