如何成为经过验证的发布商?

发布于 2024-08-30 00:00:42 字数 198 浏览 3 评论 0原文

我写了一个应用程序,我想在线销售它,所以我将其上传到我的网站并尝试下载并运行它作为测试,但出现一个窗口,它说:“无法验证发布者。您确定吗?想运行这个软件吗?”,并且还说:“发布者:未知发布者”。它实际上是一个包装成exe文件的自签名Java jar文件,我用Netbeans6.7对其进行了自签名。

我想知道我应该怎样做才能成为“知名”出版商?

坦率

I wrote an app and I want to sell it online, so I uploaded it to my website and tried to download and run it as a test, but a window appeared, it said : "The publisher could not be verified. Are you sure you want to run this software ?", and it also said : "Publisher : Unknown Publisher". It's actually a self-signed Java jar file wrapped into an exe file, I self-signed it with Netbeans6.7.

I wonder what should I do to be a "known" publisher ?

Frank

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

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

发布评论

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

评论(2

客…行舟 2024-09-06 00:00:42

您需要使用来自受信任的根证书颁发机构的代码签名证书对 EXE 进行签名。

http://www.thawte.com/code-signing/

https://www.verisign.com/code-signing/

您将通过简单的 Google 搜索

请记住,即使这是一个 Java JAR,您看到的对话框也来自 Windows,抱怨 EXE 未签名。您需要 MS Authenticode 签名证书来签署 EXE。我对 Java 不太熟悉,因此您可能也可能不需要证书来签署 JAR。 (请注意,自签名证书永远在您自己的计算机以外的任何计算机上都不会被视为完全可信和有效。)

You'll need to sign the EXE with a code signing certificate from a trusted root certification authority.

http://www.thawte.com/code-signing/

https://www.verisign.com/code-signing/

You'll find more CAs with a simple Google search.

Keep in mind, even though this is a Java JAR, the dialog you're seeing is from Windows complaining about the EXE being unsigned. You'll need a MS Authenticode signing certificate to sign the EXE. I'm not too familiar with Java, so you may or may not need a certificate to sign the JAR as well. (Note a self-signed certificate will never be recognized as fully Trusted and Valid on any computer other than your own.)

过期情话 2024-09-06 00:00:42

您需要使用批准的签名证书对其进行签名,示例位于
http://codesigning.ksoftware.net

You need to sign it with an approved signing certificate an example is at
http://codesigning.ksoftware.net

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