I need to sign a pdf file with my own e-signature using a certificate where can i get one pfx file.

link|improve this question

1  
You need to rephrase your question. Right now, it's incredibly vague. Do you need a SSL cert? Or some other kind of digital key? – thedz Jul 26 '09 at 7:48
feedback

2 Answers

up vote 1 down vote accepted

As thedz commented, your question is rather vague. Thawte offers free personal certificates here. Is that what you need?

I see you updated your question. You can generate your own pfx file using OpenSSL as follows:

# create a file containing key and self-signed certificate
openssl req \
  -x509 -nodes -days 365 \
  -newkey rsa:1024 -keyout mycert.pem -out mycert.pem

# export mycert.pem as PKCS#12 file, mycert.pfx
openssl pkcs12 -export \
  -out mycert.pfx -in mycert.pem \
  -name "My Certificate"
link|improve this answer
feedback

If you are using Java or C# you can use iText. See link for details. You can also get some leads on how to get your license, according to the license you need. There's also a very useful book (iText in action) you can refer to.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.