gpt4 book ai didi

java - 在 Java 中验证 KeyStore 密码

转载 作者:行者123 更新时间:2023-11-29 05:24:04 26 4
gpt4 key购买 nike

我允许用户在我的应用程序中指定自己的 KeyStore。我想验证用户提供的 KeyStore 密码是否有效。
有办法吗?

最佳答案

尝试加载它

FileInputStream is = new FileInputStream(file);
KeyStore keystore = KeyStore.getInstance(KeyStore.getDefaultType());
/* getting the key*/
keystore.load(is, password.toCharArray());

抛出:IOException - 如果 keystore 数据存在 I/O 或格式问题,如果需要密码但未给出,或者如果给定的密码不正确。如果错误是由于密码错误引起的,则 IOException 的原因应该是 UnrecoverableKeyException

关于java - 在 Java 中验证 KeyStore 密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23403676/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com