CAM::PDF::Decrypt(3pm) User Contributed Perl Documentation CAM::PDF::Decrypt(3pm)NAME
CAM::PDF::Decrypt - PDF security helper
LICENSE
See CAM::PDF.
SYNOPSIS
use CAM::PDF;
my $pdf = CAM::PDF->new($filename);
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.
FUNCTIONS
$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.
$prompt is a boolean that says whether the user should be prompted for a password on the command line.
$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
$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.
$self->set_passwords($doc, $ownerpass, $userpass)
$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.
$self->encrypt($doc, $string)
Encrypt the scalar using the passwords previously specified.
$self->decrypt($doc, $string)
Decrypt the scalar using the passwords previously specified.
AUTHOR
See CAM::PDF
perl v5.14.2 2012-07-08 CAM::PDF::Decrypt(3pm)
Check Out this Related Man Page
PDF::API2::Basic::PDF::Page(3pm) User Contributed Perl Documentation PDF::API2::Basic::PDF::Page(3pm)NAME
PDF::API2::Basic::PDF::Page - Represents a PDF page, inherits from PDF::API2::Basic::PDF::Pages
DESCRIPTION
Represents a page of output in PDF. It also keeps track of the content stream, any resources (such as fonts) being switched, etc.
Page inherits from Pages due to a number of shared methods. They are really structurally quite different.
INSTANCE VARIABLES
A page has various working variables:
curstrm
The currently open stream
METHODS
PDF::API2::Basic::PDF::Page->new($pdf, $parent, $index)
Creates a new page based on a pages object (perhaps the root object).
The page is also added to the parent at this point, so pages are ordered in a PDF document in the order in which they are created rather
than in the order they are closed.
Only the essential elements in the page dictionary are created here, all others are either optional or can be inherited.
The optional index value indicates the index in the parent list that this page should be inserted (so that new pages need not be appended)
$p->add($str)
Adds the string to the currently active stream for this page. If no stream exists, then one is created and added to the list of streams for
this page.
The slightly cryptic name is an aim to keep it short given the number of times people are likely to have to type it.
$p->ship_out($pdf)
Ships the page out to the given output file context
perl v5.14.2 2011-03-10 PDF::API2::Basic::PDF::Page(3pm)
Newbie question. I want to create a shell script that will only move/copy a file if it's determined that the eof string exists. This is to control files being uploaded via FTP. I don't want to move incomplete files, so my only thought is to check for eof, or compare file size every 15-30 seconds on... (12 Replies)
:confused:
We have a Sco Open Unix 5.0.5 Server that I am trying to configure to allow for PDF creation. Currently the server is just using lpr to print to laser printers located throughout the facility. The goal is to be able to also print to pdf documents. There is no option for... (2 Replies)
Hi all,
I have Sun storage 3310 and i have installed CAM to make real time monitor, but unfortunately CAM not supported to 3000 model.
is there is any application like CAM and support to 3310 model i can use.. please ur advice??
Thx
Regards,
Ahmad (2 Replies)
Hello,
Just a rather long query regarding printing to PDF.
I have installed the Cups-PDF printing system which enables me to send a normal text file and create a PDF of it. I then use the pdftk to merge that file with a template.
My question is, that I have a database system that will need... (2 Replies)
Currently own an SCO OpenServer 6 system. Will like to know how to convert files printed to PDF so they can be sent to customers via e-mail. Ex. account statements. (4 Replies)
Hello Admins,
I just have a curious question on unix passwords...
As unix passwords are encrypted, so any hacker can took those passwds from etc/shadow and decrypt them using any algorithms....and using decryption, he can get the passwd and easily get into the system.....
so how can... (4 Replies)
on a PROGRESS environment, i create an invoice which at printing it must generate both the .dat for the invoice that was sent to the printer and the .dat for the PDF version. we have never printed PDF files in our lp printer until recently. i've done a bit of googling and it comes down to that i... (2 Replies)
We are using Red Hat. We have a issue like this: We want to print from Linux, to a printer attached to a Windows machine. What we want to print is a PDF. It prints, but the printing starts from the middle of the page. In the report, there is no space at the top but still printing starts from the... (5 Replies)
I have a very strange issue. Now that we have a lot of our users using iPads to read statements, this is becoming more of an issue.
We have some financial statements that are generated into PDF format by an application that runs in HP-UX, and then we use uuencode to attach the statements to the... (4 Replies)
Hopefully this is the correct place to post this, if not please let me know.
I am trying to find a way to print from AIX directly to a windows PDF printer. I don't really care if it is paid or freeware, I am just trying to get it to work. I did see a product called BullZip and I am going to... (3 Replies)
Hello All,
How to print PDF files on AIX 5.3 and 6.1 because i tried adobe reader with no success, any help will be highly appreciated.
Thank you (8 Replies)
Hello,
I have few files on unix which are payroll related and I need them to encrypt with password so others wouldn't see the data. I use ETL tool and would like to know the unix command that does encryption/decryption to use in the ETL.
Thank you,
Sri (3 Replies)
These three finds worked as expected:
$ find . -iname "*.PDF"
$ find . -iname "*.PDF" \( ! -name "*_nobackup.*" \)
$ find . -path "*_nobackup*" -prune -iname "*.PDF"
They all returned the match:
./folder/file.pdf
:b:
This find returned no matches:
$ find . -path "*_nobackup*" -prune... (3 Replies)