我应该使用什么作为“专有名称”?在我们的 Android Market 密钥库中
我即将在 Android Market 中发布一个应用程序。我需要生成一个密钥库来签署我的应用程序。这些文档是我支持为 -dname
参数输入的一些内容。
这是我正在使用的行:
keytool -genkey -v -alias release -keyalg RSA -keysize 2048 -dname "CN=mydomain.com" -keystore my.keystore -validity 10000
-dname
(专有名称)字段中需要什么?我发现我可以包含 CN
字段。在市场接受该应用程序之前,我还必须输入其他字段吗?有什么好的可选的可以放入吗?
已更新 我发现我可以使用以下方法检查其他 apk:
jarsigner -verify -verbose -certs nameof.apk
以下是一些示例:
- 来自 http://slideme.org/ <代码>X.509,CN=SlideME,OU=SlideME,O=SlideME,L=西雅图,ST=WA,C=US
- Opera Mini <代码>X.509,CN=未知,OU=未知, O=Opera Software ASA、L=奥斯陆、ST=未知、C=NO
- 另一个随机应用程序、
X.509、CN=Romeo Ordos、O=GHOR Corp.、L=Donetsk、C=UA
I'm about to release an application in the Android Market. I need to generate a keystore to sign my application. The docs are a little spares on what I'm support to put into for the -dname
param.
Here is the line I'm using:
keytool -genkey -v -alias release -keyalg RSA -keysize 2048 -dname "CN=mydomain.com" -keystore my.keystore -validity 10000
What is required in the -dname
(Distinguished Name) field? I found out that I can include the CN
field. Are there other fields that I must put in before the Market will accept the app? Any good optional ones to put in?
Updated
I found out I can examine other apk's by using:
jarsigner -verify -verbose -certs nameof.apk
Here are some examples:
- from http://slideme.org/
X.509, CN=SlideME, OU=SlideME, O=SlideME, L=Seattle, ST=WA, C=US
- Opera Mini
X.509, CN=Unknown, OU=Unknown, O=Opera Software ASA, L=Oslo, ST=Unknown, C=NO
- Another random app,
X.509, CN=Romeo Ordos, O=GHOR Corp., L=Donetsk, C=UA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该使用与您的公司相对应的专有名称。以下是您可以使用的组件类型的列表:
据我所知,您可以使用完整的专有名称 用逗号分隔每个组件。例如,在您的情况下,您可以使用:
CN=christophercotton.com,L=Franklin
。You should use the distinguished name that corresponds to your company. Here is a list of the types of components that you can use:
As far as I know, you can use a complete Distinguised Name separating each component by a comma. For instance, in your case you could use:
CN=christophercotton.com,L=Franklin
.据我所知,Google Play 不会使用/显示这些信息。
As far as I know, those information are not used/display by Google Play.