views:

113

answers:

2

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

+1  A: 

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"
hobodave
A: 

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.

Elad