java和android密钥库路径问题

发布于 2025-01-04 09:22:00 字数 156 浏览 2 评论 0原文

我正在导出证书,但问题是如何在msdos中获取openssl的路径。请帮忙。

打开ssl的路径:C:\cygwin\bin

如何使用命令工具设置openssl的路径

I am exporting certificate, but the problem is how to get to the path of openssl in msdos. please help.

path of open ssl: C:\cygwin\bin

how to set path of openssl using command tool

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

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

发布评论

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

评论(1

鱼忆七猫命九 2025-01-11 09:22:00

要生成新的文件,您必须删除现有的 debug.keystore 文件

它的位置取决于平台 - 您可以在首选项 - Android - 构建 - 默认调试密钥存储中找到它。

您可以在 debug.keystore 中创建您自己的调试证书,有效期任意(至少 25 年)。在 HOME 目录下的 .android 文件夹中执行此操作:

keytool -genkey -v -keystore debug.keystore -alias androiddebugkey
-storepass android -keypass android -keyalg RSA -validity 14000

有关详细信息
检查此链接

检查一下

To generate a new one you must delete the existing debug.keystore file.

Its location is platform dependent - you can find it in Preferences - Android - Build - Default debug key store.

You can create your own debug certificate in debug.keystore with whatever expiration you want(min 25year). Do this in the .android folder under your HOME directory:

keytool -genkey -v -keystore debug.keystore -alias androiddebugkey
-storepass android -keypass android -keyalg RSA -validity 14000

For Detail Informations
check this link
and
check this

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