문서 암호화
암호화는 읽을 수 있는 텍스트를 의미 없는 바이트 시퀀스로 변환하여 암호 해독 키나 비밀 코드를 가진 사람만 읽을 수 있도록 하는 프로세스입니다. 이 프로세스는 콘텐츠 보안에 중요한 역할을 합니다. 콘텐츠를 인코딩하고, 문서의 원본을 확인하고, 콘텐츠가 전송된 후 수정되지 않았음을 증명하고, 문서의 데이터가 안전한지 확인하는 데 도움이 됩니다.
이 문서에서는 Aspose.Words를 사용하여 문서를 암호화하는 방법과 문서에 암호화가 있는지 확인하는 방법에 대해 설명합니다.
비밀번호로 암호화
문서를 암호화하려면 비밀번호 속성을 사용하여 암호화 키 역할을 하는 비밀번호를 제공하세요. 이렇게 하면 문서의 내용이 수정되어 읽을 수 없게 됩니다. 암호화된 문서를 열려면 이 비밀번호를 입력해야 합니다.
아래 표에는 Aspose.Words에서 지원하는 형식과 암호화 알고리즘이 나열되어 있습니다
체재 | 로드하는 동안 지원되는 암호화 | 저장하는 동안 지원되는 암호화 |
---|---|---|
DOC, DOT | XOR 암호화40비트 RC4 암호화CryptoAPI RC4 암호화 | RC4 암호화(40비트) |
DOCX, DOTX, DOCM, DOTM, FlatOPC, FlatOpcTemplate, FlatOpcMacroEnabled, FlatOpcTemplateMacroEnabled | ECMA-376 표준 암호화ECMA-376 민첩한 암호화 | ECMA-376 표준 암호화(AES128 + SHA1) |
ODT, OTT | ODF 암호화(복어/AES) | ODF 암호화(AES256 + SHA256) |
RC4 암호화(40/128비트) |
다음 코드 예제에서는 비밀번호로 문서를 암호화하는 방법을 보여줍니다
import aspose.words as aw
# Create a document.
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.write("Hello world!")
# DocSaveOptions only applies to Doc and Dot save formats.
options = aw.saving.DocSaveOptions(aw.SaveFormat.DOC);
// Set a password with which the document will be encrypted, and which will be required to open it.
options.password = "MyPassword"
doc.save(artifacts_dir + "DocSaveOptions.SaveAsDoc.doc", options)
문서가 암호화되었는지 확인
어떤 경우에는 읽을 수 없는 문서가 있을 수 있으며 문서가 암호화되어 있고 손상되거나 압축되지 않았는지 확인하고 싶을 수 있습니다.
문서가 암호화되었는지 여부와 비밀번호가 필요한지 여부를 감지하려면 FileFormatInfo 클래스의 is_encrypted 속성을 사용할 수 있습니다. 또한 이 속성을 사용하면 문서를 로드하기 전에 사용자에게 비밀번호를 제공하도록 알리는 등 일부 작업을 수행할 수 있습니다.
다음 코드 예제에서는 문서 암호화를 감지하는 방법을 보여줍니다
import aspose.words as aw
# Create a document.
doc = aw.Document()
saveOptions = aw.saving.OdtSaveOptions(aw.SaveFormat.ODT)
saveOptions.password = "MyPassword"
doc.Save(artifacts_dir + "File.DetectDocumentEncryption.odt", saveOptions)
# Create a `FileFormatInfo` object for this document.
info = aw.FileFormatUtil.detect_file_format(artifacts_dir + "File.DetectDocumentEncryption.odt")
# Verify the encryption status of our document.
self.assertTrue(info.is_encrypted)
비밀번호를 사용하거나 사용하지 않고 문서 열기
문서가 암호화되어 있음을 확인하면 암호 없이 이 문서를 열려고 시도할 수 있으며 이로 인해 예외가 발생합니다.
다음 코드 예제에서는 암호 없이 암호화된 문서를 여는 방법을 보여줍니다
import aspose.words as aw
# Create a document.
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.write("Hello world!")
# OoxmlSaveOptions only applies to Docx, Docm, Dotx, Dotm, or FlatOpc formats.
options = aw.saving.OoxmlSaveOptions(aw.SaveFormat.DOCX)
# Set a password with which the document will be encrypted, and which will be required to open it.
options.password = "MyPassword"
doc.Save(artifacts_dir + "OoxmlSaveOptions.SaveAsDocx.docx", options)
# We will not be able to open this document with Microsoft Word or
# Aspose.Words without providing the correct password.
# The following line will throw an exception.
doc = aw.Document(artifacts_dir + "OoxmlSaveOptions.Password.docx"))
암호화된 문서는 비밀번호 없이는 열 수 없다는 것을 확인한 후 비밀번호를 입력하여 열어볼 수 있습니다.
다음 코드 예제에서는 비밀번호로 암호화된 문서를 여는 방법을 보여줍니다
import aspose.words as aw
# Create a document.
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.write("Hello world!")
# OoxmlSaveOptions only applies to Docx, Docm, Dotx, Dotm, or FlatOpc formats.
options = aw.saving.OoxmlSaveOptions(aw.SaveFormat.DOCX)
# Set a password with which the document will be encrypted, and which will be required to open it.
options.password = "MyPassword"
doc.Save(artifacts_dir + "OoxmlSaveOptions.SaveAsDocx.docx", options)
# Open the encrypted document by passing the correct password in a `LoadOptions` object.
doc = aw.Document(artifacts_dir + "OoxmlSaveOptions.Password.docx", aw.loading.LoadOptions("MyPassword"))
self.assertEqual("Hello world!", doc.get_text().strip())