forked from J-F-Liu/lopdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverify_decryption.rs
More file actions
250 lines (212 loc) · 8.72 KB
/
verify_decryption.rs
File metadata and controls
250 lines (212 loc) · 8.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
// Example demonstrating PDF decryption capabilities
// This verifies the modifications to src/reader.rs for handling encrypted PDFs
use std::sync::{Arc, atomic::AtomicBool};
use lopdf::{Document, EncryptionState, EncryptionVersion, Permissions};
#[cfg(not(feature = "async"))]
fn main() {
println!("=== PDF Decryption Verification ===\n");
// Test 1: Load an encrypted PDF from assets
println!("Test 1: Loading encrypted PDF from assets/encrypted.pdf");
let stop = Arc::new(AtomicBool::new(false));
match Document::load("assets/encrypted.pdf", stop) {
Ok(doc) => {
println!("✓ Successfully loaded encrypted PDF");
println!(" - Is encrypted: {}", doc.is_encrypted());
println!(" - Number of pages: {}", doc.get_pages().len());
println!(" - Has encryption state: {}", doc.encryption_state.is_some());
// Try to extract text
let pages = doc.get_pages();
let page_nums: Vec<u32> = pages.keys().cloned().collect();
match doc.extract_text(&page_nums) {
Ok(text) => {
println!(" - Text extraction successful");
println!(" - Text length: {} characters", text.len());
}
Err(e) => println!(" - Text extraction failed: {:?}", e),
}
}
Err(e) => println!("✗ Failed to load encrypted PDF: {:?}", e),
}
println!();
// Test 2: Create and encrypt a new PDF, then verify it can be loaded
println!("Test 2: Creating, encrypting, and re-loading a PDF");
// Create a simple PDF
let mut doc = Document::with_version("1.5");
// Add ID (required for encryption)
doc.trailer.set(
"ID",
lopdf::Object::Array(vec![
lopdf::Object::String(vec![1u8; 16], lopdf::StringFormat::Literal),
lopdf::Object::String(vec![2u8; 16], lopdf::StringFormat::Literal),
]),
);
// Add minimal structure
let catalog = doc.add_object(lopdf::dictionary! {
"Type" => "Catalog",
"Pages" => lopdf::Object::Reference((2, 0))
});
doc.trailer.set("Root", lopdf::Object::Reference(catalog));
doc.objects.insert(
(2, 0),
lopdf::Object::Dictionary(lopdf::dictionary! {
"Type" => "Pages",
"Count" => 0,
"Kids" => Vec::<lopdf::Object>::new()
}),
);
// Encrypt the document
let encryption_version = EncryptionVersion::V2 {
document: &doc,
owner_password: "",
user_password: "",
key_length: 128,
permissions: Permissions::all(),
};
match EncryptionState::try_from(encryption_version) {
Ok(state) => {
doc.encrypt(&state).unwrap();
println!("✓ Document encrypted successfully");
// Save to temporary location
let temp_dir = tempfile::tempdir().unwrap();
let path = temp_dir.path().join("test_encrypted.pdf");
doc.save(&path).unwrap();
println!("✓ Encrypted document saved");
// Try to load it back
let stop = Arc::new(AtomicBool::new(false));
match Document::load(&path, stop) {
Ok(loaded_doc) => {
println!("✓ Encrypted document re-loaded successfully");
println!(" - Is encrypted: {}", loaded_doc.is_encrypted());
println!(" - Has encryption state: {}", loaded_doc.encryption_state.is_some());
}
Err(e) => println!("✗ Failed to re-load encrypted document: {:?}", e),
}
}
Err(e) => println!("✗ Failed to create encryption state: {:?}", e),
}
println!();
// Test 3: Verify object access in encrypted PDF
println!("Test 3: Verifying object access in encrypted PDF");
let stop = Arc::new(AtomicBool::new(false));
if let Ok(doc) = Document::load("assets/encrypted.pdf", stop) {
let mut accessible_objects = 0;
let mut total_checked = 0;
for i in 1..=20 {
total_checked += 1;
if doc.get_object((i, 0)).is_ok() {
accessible_objects += 1;
}
}
println!("✓ Object access test completed");
println!(" - Objects checked: {}", total_checked);
println!(" - Objects accessible: {}", accessible_objects);
println!(
" - Success rate: {:.1}%",
(accessible_objects as f64 / total_checked as f64) * 100.0
);
}
println!("\n=== All decryption tests completed ===");
}
#[cfg(feature = "async")]
#[tokio::main]
async fn main() {
println!("=== PDF Decryption Verification (Async) ===\n");
// Test 1: Load an encrypted PDF from assets
println!("Test 1: Loading encrypted PDF from assets/encrypted.pdf");
match Document::load("assets/encrypted.pdf").await {
Ok(doc) => {
println!("✓ Successfully loaded encrypted PDF");
println!(" - Is encrypted: {}", doc.is_encrypted());
println!(" - Number of pages: {}", doc.get_pages().len());
println!(" - Has encryption state: {}", doc.encryption_state.is_some());
// Try to extract text
let pages = doc.get_pages();
let page_nums: Vec<u32> = pages.keys().cloned().collect();
match doc.extract_text(&page_nums) {
Ok(text) => {
println!(" - Text extraction successful");
println!(" - Text length: {} characters", text.len());
}
Err(e) => println!(" - Text extraction failed: {:?}", e),
}
}
Err(e) => println!("✗ Failed to load encrypted PDF: {:?}", e),
}
println!();
// Test 2: Create and encrypt a new PDF, then verify it can be loaded
println!("Test 2: Creating, encrypting, and re-loading a PDF");
// Create a simple PDF
let mut doc = Document::with_version("1.5");
// Add ID (required for encryption)
doc.trailer.set(
"ID",
lopdf::Object::Array(vec![
lopdf::Object::String(vec![1u8; 16], lopdf::StringFormat::Literal),
lopdf::Object::String(vec![2u8; 16], lopdf::StringFormat::Literal),
]),
);
// Add minimal structure
let catalog = doc.add_object(lopdf::dictionary! {
"Type" => "Catalog",
"Pages" => lopdf::Object::Reference((2, 0))
});
doc.trailer.set("Root", lopdf::Object::Reference(catalog));
doc.objects.insert(
(2, 0),
lopdf::Object::Dictionary(lopdf::dictionary! {
"Type" => "Pages",
"Count" => 0,
"Kids" => Vec::<lopdf::Object>::new()
}),
);
// Encrypt the document
let encryption_version = EncryptionVersion::V2 {
document: &doc,
owner_password: "",
user_password: "",
key_length: 128,
permissions: Permissions::all(),
};
match EncryptionState::try_from(encryption_version) {
Ok(state) => {
doc.encrypt(&state).unwrap();
println!("✓ Document encrypted successfully");
// Save to temporary location
let temp_dir = tempfile::tempdir().unwrap();
let path = temp_dir.path().join("test_encrypted.pdf");
doc.save(&path).unwrap();
println!("✓ Encrypted document saved");
// Try to load it back
match Document::load(&path).await {
Ok(loaded_doc) => {
println!("✓ Encrypted document re-loaded successfully");
println!(" - Is encrypted: {}", loaded_doc.is_encrypted());
println!(" - Has encryption state: {}", loaded_doc.encryption_state.is_some());
}
Err(e) => println!("✗ Failed to re-load encrypted document: {:?}", e),
}
}
Err(e) => println!("✗ Failed to create encryption state: {:?}", e),
}
println!();
// Test 3: Verify object access in encrypted PDF
println!("Test 3: Verifying object access in encrypted PDF");
if let Ok(doc) = Document::load("assets/encrypted.pdf").await {
let mut accessible_objects = 0;
let mut total_checked = 0;
for i in 1..=20 {
total_checked += 1;
if doc.get_object((i, 0)).is_ok() {
accessible_objects += 1;
}
}
println!("✓ Object access test completed");
println!(" - Objects checked: {}", total_checked);
println!(" - Objects accessible: {}", accessible_objects);
println!(
" - Success rate: {:.1}%",
(accessible_objects as f64 / total_checked as f64) * 100.0
);
}
println!("\n=== All decryption tests completed ===");
}