免费或开放的个人数字签名文档证书?

发布于 2024-07-30 02:40:01 字数 52 浏览 12 评论 0原文

我需要使用我自己的电子签名使用证书来签署 pdf 文件,在哪里可以获得一个 pfx 文件。

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

樱花细雨 2024-08-06 02:40:01

正如 thedz 评论的那样,你的问题相当模糊。 Thawte 在此处提供免费个人证书。 这是你需要的吗?

我看到你更新了你的问题。 您可以使用 OpenSSL 生成自己的 pfx 文件,如下所示:

# 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"

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"
一页 2024-08-06 02:40:01

如果您使用 Java 或 C#,则可以使用 iText。
有关详细信息,请参阅链接。 您还可以根据您需要的许可证获得有关如何获得许可证的一些线索。
还有一本非常有用的书(iText in action)您可以参考。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文