/usr/share/perl5/CAM/PDF/Decrypt.pm is in libcam-pdf-perl 1.60-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 | package CAM::PDF::Decrypt;
# These are included at runtime via eval below
# use Digest::MD5;
# use Crypt::RC4;
use 5.006;
use warnings;
use strict;
use Carp;
use English qw(-no_match_vars);
use CAM::PDF;
use CAM::PDF::Node;
our $VERSION = '1.60';
=for stopwords Decrypt
=head1 NAME
CAM::PDF::Decrypt - PDF security helper
=head1 LICENSE
See CAM::PDF.
=head1 SYNOPSIS
use CAM::PDF;
my $pdf = CAM::PDF->new($filename);
=head1 DESCRIPTION
This class is used invisibly by CAM::PDF whenever it detects that a
document is encrypted. See new(), getPrefs() and setPrefs() in that
module.
=cut
# These constants come from the Adobe PDF Reference document, IIRC
my $padding = pack 'C*',
0x28, 0xbf, 0x4e, 0x5e,
0x4e, 0x75, 0x8a, 0x41,
0x64, 0x00, 0x4e, 0x56,
0xff, 0xfa, 0x01, 0x08,
0x2e, 0x2e, 0x00, 0xb6,
0xd0, 0x68, 0x3e, 0x80,
0x2f, 0x0c, 0xa9, 0xfe,
0x64, 0x53, 0x69, 0x7a;
=head1 FUNCTIONS
=over
=item $pkg->new($pdf, $ownerpass, $userpass, $prompt)
Create and validate a new decryption object. If this fails, it will
set $CAM::PDF::errstr and return undef.
C<$prompt> is a boolean that says whether the user should be prompted for
a password on the command line.
=cut
sub new
{
my $pkg = shift;
my $doc = shift;
my $opassword = shift;
my $upassword = shift;
my $prompt = shift;
if (!$doc)
{
$CAM::PDF::errstr = "This is an invalid PDF doc\n";
return;
}
if (!exists $doc->{trailer})
{
$CAM::PDF::errstr = "This PDF doc has no trailer\n";
return;
}
my $self = bless {
keycache => {},
}, $pkg;
if (!exists $doc->{trailer}->{Encrypt})
{
# This PDF doc is not encrypted. Return an empty object
$self->{noop} = 1;
return $self;
}
if (!$doc->{ID})
{
$CAM::PDF::errstr = "This PDF lacks an ID. The document cannot be decrypted.\n";
return;
}
return $self->_init($doc, $opassword, $upassword, $prompt);
}
sub _init
{
my $self = shift;
my $doc = shift;
my $opassword = shift;
my $upassword = shift;
my $prompt = shift;
if ($doc->{trailer}->{Encrypt}->{type} eq 'reference')
{
# If the encryption block is an indirect reference, store
# it's location so we don't accidentally encrypt it.
$self->{EncryptBlock} = $doc->{trailer}->{Encrypt}->{value};
}
my $dict = $doc->getValue($doc->{trailer}->{Encrypt});
if ($dict->{Filter}->{value} ne 'Standard' || ($dict->{V}->{value} != 1 && $dict->{V}->{value} != 2))
{
$CAM::PDF::errstr = "CAM::PDF only supports Version 1 and 2 of the Standard encryption filter. This PDF uses something else.\n";
return;
}
# V == 1 means MD5+RC4, keylength == 40
# V == 2 means MD5+RC4, keylength == {40, 48, 56, 64, ..., 128}
# See PDF Ref 1.5 p93
$self->{keylength} = $dict->{V}->{value} == 1 ? 40 : $dict->{Length} ? $dict->{Length}->{value} : 40;
if (40 > $self->{keylength} || 128 < $self->{keylength} || 0 != $self->{keylength} % 8)
{
$CAM::PDF::errstr = "Invalid key length $self->{keylength}. The document cannot be decrypted.\n";
return;
}
# PDF Ref 1.5 pp. 97-98
foreach my $key ('R', 'O', 'U', 'P')
{
if (exists $dict->{$key})
{
$self->{$key} = $dict->{$key}->{value};
}
else
{
$CAM::PDF::errstr = "Requred decryption datum $key is missing. The document cannot be decrypted.\n";
return;
}
}
require Digest::MD5;
require Crypt::RC4;
while (1)
{
if ($self->_check_opass($opassword, $upassword))
{
$self->{code} = $self->_compute_hash($doc->{ID}, $opassword);
last;
}
elsif ($self->_check_upass($doc->{ID}, $upassword))
{
$self->{code} = $self->_compute_hash($doc->{ID}, $upassword);
last;
}
elsif ($prompt)
{
print {*STDERR} 'Enter owner password: ';
$opassword = <STDIN>; ## no critic(InputOutput::ProhibitExplicitStdin)
chomp $opassword;
print {*STDERR} 'Enter user password: ';
$upassword = <STDIN>; ## no critic(InputOutput::ProhibitExplicitStdin)
chomp $upassword;
}
else
{
$CAM::PDF::errstr = "Incorrect password(s). The document cannot be decrypted.\n";
return;
}
}
$self->{opass} = $opassword;
$self->{upass} = $upassword;
return $self;
}
=item $self->decode_permissions($field)
Given a binary encoded permissions string from a PDF document, return
the four individual boolean fields as an array:
print boolean
modify boolean
copy boolean
add boolean
=cut
sub decode_permissions
{
my $self = shift;
my $p = shift;
my $bytes = unpack 'b*', pack 'V', $p;
return split //xms, substr $bytes, 2, 4;
}
=item $self->encode_permissions($print, $modify, $copy, $add)
Given four booleans, pack them into a single field in the PDF style
that decode_permissions can understand. Returns that scalar.
=cut
sub encode_permissions
{
my $self = shift;
my %allow;
$allow{print} = shift;
$allow{modify} = shift;
$allow{copy} = shift;
$allow{add} = shift;
foreach my $key (keys %allow)
{
$allow{$key} = $allow{$key} ? 1 : 0;
}
# This is more complicated that decode, because we need to pad
# endian-appropriately
my $perms = join q{}, $allow{print}, $allow{modify}, $allow{copy}, $allow{add};
my $bytes = '00' . $perms . '11'; # 8 bits: 2 pad, 4 data, 2 pad
# Pad to 32 bits with the right endian-ness
my $binary = unpack 'B16', pack 's', 255;
if ('1' eq substr $binary, 0, 1)
{
# little endian
$bytes .= '11111111' x 3;
}
else
{
# big endian
$bytes = ('11111111' x 3) . $bytes;
}
# Make a signed 32-bit number (NOTE: should this really be signed??? need to check spec...)
my $p = unpack 'l', pack 'b32', $bytes;
return $p;
}
=item $self->set_passwords($doc, $ownerpass, $userpass)
=item $self->set_passwords($doc, $ownerpass, $userpass, $permissions)
Change the PDF passwords to the specified values. When the PDF is
output, it will be encrypted with the new passwords.
PERMISSIONS is an optional scalar of the form that decode_permissions
can understand. If not specified, the existing values will be
retained.
Note: we only support writing using encryption version 1, even though
we can read encryption version 2 as well.
=cut
sub set_passwords
{
my $self = shift;
my $doc = shift;
my $opass = shift;
my $upass = shift;
my $p = shift || $self->{P} || $self->encode_permissions(1,1,1,1);
require Digest::MD5;
require Crypt::RC4;
$doc->clean(); # Mark EVERYTHING changed
# if no crypt block, create it and a trailer entry
my $dict = CAM::PDF::Node->new('dictionary',
{
Filter => CAM::PDF::Node->new('label', 'Standard'),
V => CAM::PDF::Node->new('number', 1),
R => CAM::PDF::Node->new('number', 2),
P => CAM::PDF::Node->new('number', $p),
O => CAM::PDF::Node->new('string', q{}),
U => CAM::PDF::Node->new('string', q{}),
});
my $objnode = CAM::PDF::Node->new('object', $dict);
my $objnum = $self->{EncryptBlock};
if ($objnum)
{
$doc->replaceObject($objnum, undef, $objnode, 0);
}
else
{
$objnum = $doc->appendObject(undef, $objnode, 0);
}
if (!$doc->{trailer})
{
die 'No trailer';
}
# This may overwrite an existing ref, but that's no big deal, just a tiny bit inefficient
$doc->{trailer}->{Encrypt} = CAM::PDF::Node->new('reference', $objnum);
# if no ID, create it
if (!$doc->{ID})
{
$doc->createID();
#print 'new ID: ' . unpack('h*',$doc->{ID}) . ' (' . length($doc->{ID}) . ")\n";
}
#else { print 'old ID: '.unpack('h*',$doc->{ID}) . ' (' . length($doc->{ID}) . ")\n"; }
# Recompute O and U
# To do so, we must set up a couple of dependent variables first:
$self->{R} = 2;
$self->{keylength} = 40;
$self->{P} = $p;
# set O (has to be first because U uses O)
$self->{O} = $self->_compute_o($opass, $upass);
# set U
$self->{U} = $self->_compute_u($doc->{ID}, $upass);
# save O and U in the Encrypt block
$dict = $doc->getObjValue($objnum);
$dict->{O}->{value} = $self->{O};
$dict->{U}->{value} = $self->{U};
# Create a brand new instance
my $pkg = ref $self;
$doc->{crypt} = $pkg->new($doc, $opass, $upass, 0)
|| die "$CAM::PDF::errstr\n";
return $doc->{crypt};
}
=item $self->encrypt($doc, $string)
Encrypt the scalar using the passwords previously specified.
=cut
sub encrypt
{
my ($self, @rest) = @_;
return $self->_crypt(@rest);
}
=item $self->decrypt($doc, $string)
Decrypt the scalar using the passwords previously specified.
=cut
sub decrypt
{
my ($self, @rest) = @_;
return $self->_crypt(@rest);
}
# INTERNAL FUNCTION
# The real work behind encrpyt/decrypt
sub _crypt
{
my $self = shift;
my $doc = shift;
my $content = shift;
my $objnum = shift;
my $gennum = shift;
return $content if ($self->{noop});
if (ref $content || ref $objnum || ref $gennum)
{
die 'Trying to crypt data with non-scalar obj/gennum or content';
}
# DO NOT encrypt the encryption block!! :-)
return $content if ($objnum && $self->{EncryptBlock} && $objnum == $self->{EncryptBlock});
if (!defined $gennum)
{
if (!$objnum)
{
# This is not a real document object. It might be a trailer object.
return $content;
}
croak 'gennum missing in crypt';
}
return Crypt::RC4::RC4($self->_compute_key($objnum, $gennum), $content);
}
sub _compute_key
{
my $self = shift;
my $objnum = shift;
my $gennum = shift;
my $id = $objnum . '_' .$gennum;
if (!exists $self->{keycache}->{$id})
{
my $objstr = pack 'V', $objnum;
my $genstr = pack 'V', $gennum;
my $objpadding = substr $objstr, 0, 3;
my $genpadding = substr $genstr, 0, 2;
my $hash = Digest::MD5::md5($self->{code} . $objpadding . $genpadding);
# size(bytes) = nbits/8 + 3 for objnum + 2 for gennum; max of 16; PDF ref 1.5 pp 94-95
my $size = ($self->{keylength} >> 3) + 5;
if ($size > 16) {
$size = 16;
}
$self->{keycache}->{$id} = substr $hash, 0, $size;
}
return $self->{keycache}->{$id};
}
sub _compute_hash
{
my $self = shift;
my $doc_id = shift;
my $pass = shift;
#print "_compute_hash for password $pass, P: $self->{P}, ID: $doc_id, O: $self->{O}\n" if ($pass);
$pass = $self->_format_pass($pass);
my $p = pack 'L', $self->{P}+0;
my $bytes = unpack 'b32', $p;
if (1 == substr $bytes, 0, 1)
{
# big endian, so byte swap
$p = (substr $p,3,1).(substr $p,2,1).(substr $p,1,1).(substr $p,0,1);
}
my $id = substr $doc_id, 0, 16;
my $input = $pass . $self->{O} . $p . $id;
if ($self->{R} == 3) {
# I don't know how to decide this. Maybe not applicable with Standard filter?
#if document metadata is not encrypted
# input .= pack 'L', 0xFFFFFFFF;
}
my $hash = Digest::MD5::md5($input);
if ($self->{R} == 3)
{
for my $iter (1..50) {
$hash = Digest::MD5::md5($hash);
}
}
# desired number of bytes for the key
# for V==1, size == 5
# for V==2, 5 < size < 16
my $size = $self->{keylength} >> 3;
return substr $hash, 0, $size;
}
sub _compute_u
{
my $self = shift;
my $doc_id = shift;
my $upass = shift;
my $hash = $self->_compute_hash($doc_id, $upass);
if ($self->{R} == 3) {
my $id = substr $doc_id, 0, 16;
my $input = $padding . $id;
my $code = Digest::MD5::md5($input);
$code = substr $code, 0, 16;
return $self->_do_iter_crypt($hash, $code) . substr $padding, 0, 16;
} else {
return Crypt::RC4::RC4($hash, $padding);
}
}
sub _compute_o
{
my $self = shift;
my $opass = shift;
my $upass = shift;
my $backward = shift;
my $o = $self->_format_pass($opass);
my $u = $self->_format_pass($upass);
my $hash = Digest::MD5::md5($o);
if ($self->{R} == 3) {
for my $iter (1..50) {
$hash = Digest::MD5::md5($hash);
}
}
my $size = $self->{keylength} >> 3;
my $code = substr $hash, 0, $size;
return $self->_do_iter_crypt($code, $u, $backward);
}
sub _do_iter_crypt {
my $self = shift;
my $code = shift;
my $pass = shift;
my $backward = shift;
if ($self->{R} == 3) {
my @steps = 0..19;
if ($backward) {
@steps = reverse @steps;
}
my $size = $self->{keylength} >> 3;
for my $iter (@steps) {
my $xor = chr($iter) x $size;
my $itercode = $code ^ $xor;
$pass = Crypt::RC4::RC4($itercode, $pass);
}
} else {
$pass = Crypt::RC4::RC4($code, $pass);
}
return $pass;
}
sub _check_opass
{
my $self = shift;
my $opass = shift;
my $upass = shift;
my $crypto = $self->_compute_o($opass, $upass, 1);
#printf "O: %s\n%s\n vs.\n%s\n", defined $opass ? $opass : '(undef)', _hex($crypto), _hex($self->{O});
return $crypto eq $self->{O};
}
sub _check_upass
{
my $self = shift;
my $doc_id = shift;
my $upass = shift;
my $cryptu = $self->_compute_u($doc_id, $upass);
#printf "U: %s\n%s\n vs.\n%s\n", defined $upass ? $upass : '(undef)', _hex($cryptu), _hex($self->{U});
return $cryptu eq $self->{U};
}
sub _hex {
my $val = shift;
return join q{}, map {sprintf '%08x', $_} unpack 'N*', $val;
}
sub _format_pass
{
my $self = shift;
my $pass = shift;
if (!defined $pass)
{
$pass = q{};
}
return substr $pass.$padding, 0, 32;
}
1;
__END__
=back
=head1 AUTHOR
See L<CAM::PDF>
=cut
|