Как улучшить защиту паролем с помощью C# и .NET

В современную цифровую эпоху защита конфиденциальной информации имеет первостепенное значение. Одним из эффективных способов защиты PDF-документов является установка пароля. В этой статье вы узнаете, как изменить пароль для PDF-документа на C# и .NET, используя мощные возможности библиотеки SautinSoft.Pdf.

Защита паролем гарантирует, что только уполномоченные лица смогут получить доступ к содержимому ваших PDF-документов. Это особенно важно для документов, содержащих конфиденциальную информацию, например финансовые отчёты, личные данные или коммерческую информацию.

Пошаговое руководство:

  1. Добавить SautinSoft.PDF из NuGet.
  2. Загрузить PDF-документ из потенциально зашифрованного PDF-файла.
  3. Удалить шифрование из выходного PDF-файла.
  4. Установить шифрование на основе пароля, чтобы для открытия PDF-документа требовался пароль.
  5. Сохранить PDF-документ в незашифрованном PDF-файле.

Выходной результат:

Полный код

using System;
using SautinSoft.Pdf;
using System.IO;
using SautinSoft.Pdf.Security;

class Program
{
    /// <summary>
    /// Change the Password Protection.
    /// </summary>
    /// <remarks>
    /// Details: https://sautinsoft.com/products/pdf/help/net/developer-guide/change-password-protection.php
    /// </remarks>
    static void Main()
    {
            // Before starting this example, please get a free trial key:
            // https://sautinsoft.com/start-for-free/

            // Apply the key here:
            // PdfDocument.SetLicense("...");
        try
        {
            // Load PDF document from a potentially encrypted PDF file.
            using (var document = PdfDocument.Load(Path.GetFullPath(@"..\..\..\hello.pdf"),
                new PdfLoadOptions() { Password = "123456" }))
            {
                // Remove encryption from an output PDF file.
                document.SaveOptions.Encryption = null;

                // Set password-based encryption with password required to open a PDF document.
                document.SaveOptions.SetPasswordEncryption().DocumentOpenPassword = "654321";

                // Save PDF document to an unencrypted PDF file.
                document.Save("Decryption.pdf");
            }
        }
        catch (InvalidPdfPasswordException ex)
        {
            // Gracefully handle the case when input PDF file is encrypted 
            // and provided password is invalid.
            Console.WriteLine(ex.Message);
        }
        System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo("Decryption.pdf") { UseShellExecute = true });
    }
}

Download

Option Infer On

Imports System
Imports SautinSoft.Pdf
Imports System.IO
Imports SautinSoft.Pdf.Security

Friend Class Program
	''' <summary>
	''' Change the Password Protection.
	''' </summary>
	''' <remarks>
	''' Details: https://sautinsoft.com/products/pdf/help/net/developer-guide/change-password-protection.php
	''' </remarks>
	Shared Sub Main()
			' Before starting this example, please get a free trial key:
			' https://sautinsoft.com/start-for-free/

			' Apply the key here:
			' PdfDocument.SetLicense("...");
		Try
			' Load PDF document from a potentially encrypted PDF file.
			Using document = PdfDocument.Load(Path.GetFullPath("..\..\..\hello.pdf"), New PdfLoadOptions() With {.Password = "123456"})
				' Remove encryption from an output PDF file.
				document.SaveOptions.Encryption = Nothing

				' Set password-based encryption with password required to open a PDF document.
				document.SaveOptions.SetPasswordEncryption().DocumentOpenPassword = "654321"

				' Save PDF document to an unencrypted PDF file.
				document.Save("Decryption.pdf")
			End Using
		Catch ex As InvalidPdfPasswordException
			' Gracefully handle the case when input PDF file is encrypted 
			' and provided password is invalid.
			Console.WriteLine(ex.Message)
		End Try
		System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo("Decryption.pdf") With {.UseShellExecute = True})
	End Sub
End Class

Download


Если вам нужен пример кода или у вас есть вопрос: напишите нам по адресу support@sautinsoft.ru или спросите в онлайн-чате (правый нижний угол этой страницы) или используйте форму ниже:



Вопросы и предложения всегда приветствуются!

Мы разрабатываем компоненты .Net с 2002 года. Мы знаем форматы PDF, DOCX, RTF, HTML, XLSX и Images. Если вам нужна помощь в создании, изменении или преобразовании документов в различных форматах, мы можем вам помочь. Мы напишем для вас любой пример кода абсолютно бесплатно.