Nagappa L M
Nagappa L M

Reputation: 1480

Adding Digital Signature to pdf from USB device in java

Actually i don't have much knowledge in java Security. My requirement is Add Digital Signature to pdf from USB device in a client machine,If any one you worked on this type of issue Please assist me the link,

Thanks,

Upvotes: 2

Views: 3820

Answers (2)

Do you mean having Java code on the server and needing to sign the document on the client side? Such task requires having client-side mechanisms (usually a Java applet or ActiveX control or some standalone application) which will do the actual signing job.

Our SecureBlackbox library has a distributed cryptography add-on which lets you accomplish the task easily. You will find detailed description of the add-on on our site or in this SO answer.

If you need to sign the data in client-side Java code (i.e. the USB device is local to the code), then you can use PDFBlackbox package of our SecureBlackbox product - it supports operations with USB tokens and cryptocards.

Upvotes: 0

Bruno Lowagie
Bruno Lowagie

Reputation: 77528

I've written a white paper about digital signing and PDF. It also explains what such an USB token is about. You can download this document for free from this URL: http://itextpdf.com/book/digitalsignatures

Upvotes: 2

Related Questions