回答:
プログラムpdftk
を使用して、所有者とユーザーの両方のパスワードを設定できます
pdftk input.pdf output output.pdf owner_pw xyz user_pw abc
どこowner_pw
とuser_pw
パスワードを追加するためのコマンドですxyz
とabc
、それぞれ(あなたはまた、どちらか一方を指定することができますが、user_pw
開口部を禁止するために必要です)。
次を追加して、デフォルトの40ビット暗号化強度をオーバーライドすることもできます。
.... encrypt_128bit
pdftkは古いライブラリに依存しているため、Fedora / CentOSのリポジトリにはありません。代わりとして、私はqpdfを好みます
qpdf --encrypt [readpass] [ownerpass] 256-[infile] .pdf [outfile] .pdf
pdftkツールキットでは、Linuxでこのタイプの機能を使用できます。
open your Ubuntu Terminal [CTRL+ALT+T] install pdftk by using this command : sudo apt-get install pdftk make sure pdftk is now installed by write this on terminal : pdftk you will see a bunch of pdftk command instructions if it already installed simply using this command to add a password to your existing pdf document
pdftk <source>.pdf output <destination>.pdf userpw <password>
example:
pdftk Mydocs.pdf output Mydocs_pass.pdf userpw secretword
http://wildabdat.tumblr.com/post/13245065154/how-to-add-password-to-your-pdf-docs-on-ubuntu
pdftk 2.02-2
)。