我想为我的应用程序中的现有pdf文件添加密码保护。
这是我的代码:
if let path = Bundle.main.path(forResource: "pdf_file", ofType: "pdf") {
let url = URL(fileURLWithPath: path)
if let pdfDocument = PDFDocument(url: url) {
pdfDocument.write(to: url, withOptions: [PDFDocumentWriteOption.userPasswordOption : "pwd"])
pdfView.displayMode = .singlePageContinuous
pdfView.autoScales = true
// pdfView.displayDirection = .horizontal
pdfView.document = pdfDocument
}
}
在查看文件之前添加了 pdfDocument.write()行。我原以为该文件将不再被查看,或者在查看该文件之前会先询问密码,但我仍然可以直接查看该文件,就像该行不存在一样。
在为PDF文件添加密码保护之前和之后,我都尝试过 PSPDFKit ,当查看该文件时,它会先询问密码,并且应用程序存储中的文件已锁定/加密,但这不是在iOS 11及更高版本上使用此iOS PDFKit 新功能时会得到什么。
答案 0 :(得分:4)
您没有加密pdfDocument的问题,您将pdfDocument的加密副本写入磁盘,如果您从磁盘读取此文档,它将受到保护。 示例:
if let path = Bundle.main.path(forResource: "pdf_file", ofType: "pdf") {
let url = URL(fileURLWithPath: path)
if let pdfDocument = PDFDocument(url: url) {
let documentDirectory = try! FileManager.default.url(for: .documentDirectory, in: .userDomainMask, appropriateFor:nil, create:false)
let encryptedFileURL = documentDirectory.appendingPathComponent("encrypted_pdf_file")
// write with password protection
pdfDocument.write(to: encryptedFileURL, withOptions: [PDFDocumentWriteOption.userPasswordOption : "pwd",
PDFDocumentWriteOption.ownerPasswordOption : "pwd"])
// get encrypted pdf
guard let encryptedPDFDoc = PDFDocument(url: encryptedFileURL) else {
return
}
print(encryptedPDFDoc.isEncrypted) // true
print(encryptedPDFDoc.isLocked) // true
pdfView?.displayMode = .singlePageContinuous
pdfView?.autoScales = true
pdfView?.displayDirection = .horizontal
pdfView?.document = encryptedPDFDoc
}
}
我希望有帮助