Lost keystore alias but have file and password used for alias(丢失密钥库别名,但有用于别名的文件和密码)
问题描述
最近我为我的密钥库添加了一个新别名来签署我的应用程序.
recently I added a new alias to my keystore to sign my app.
现在我丢失了带有别名的新生成文件,但请记住密码和别名,并拥有一个较旧的文件副本.有没有办法使用这些东西重新创建别名?
Now I lost the new generated file with the alias, but remember the password and the alias name and have an older copy the file. Is there a way to recreate the alias using this things?
推荐答案
您可以使用以下命令列出您的密钥库的内容:
You can list the contents of your keystore with the command:
keytool -list -keystore <name of keystore file>
为此,您需要提供密钥库密码(不是别名密码).这将告诉您文件中的别名,这些别名是自包含的,允许您签名.如果您愿意,您还可以使用其他选项/工具提取密钥.
To do this, you will need to provide the keystore password (not the alias password). This will tell you the aliases in the file, which are self-contained, allowing you to sign. If you wish, you could also extract keys using other options / tools.
这篇关于丢失密钥库别名,但有用于别名的文件和密码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:丢失密钥库别名,但有用于别名的文件和密码
基础教程推荐
- Xcode UIView.init(frame:) 只能在主线程中使用 2022-01-01
- UIImage 在开始时不适合 UIScrollView 2022-01-01
- 为什么姜饼模拟器方向卡在应用程序中? 2022-01-01
- 如何比较两个 NSDate:哪个是最近的? 2022-01-01
- navigationItem.backBarButtonItem 不工作?为什么上一个菜单仍然显示为按钮? 2022-01-01
- Play 商店的设备兼容性问题 2022-01-01
- iOS - UINavigationController 添加多个正确的项目? 2022-01-01
- SwiftUI-ScrollViewReader的ScrollTo不滚动 2022-01-01
- Android Volley - 如何动画图像加载? 2022-01-01
- 如何将图像从一项活动发送到另一项活动? 2022-01-01
