如何成为经过验证的发布商?
我写了一个应用程序,我想在线销售它,所以我将其上传到我的网站并尝试下载并运行它作为测试,但出现一个窗口,它说:“无法验证发布者。您确定吗?想运行这个软件吗?”,并且还说:“发布者:未知发布者”。它实际上是一个包装成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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用来自受信任的根证书颁发机构的代码签名证书对 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.)
您需要使用批准的签名证书对其进行签名,示例位于
http://codesigning.ksoftware.net
You need to sign it with an approved signing certificate an example is at
http://codesigning.ksoftware.net