java.security.KeyStore类的getEntry()方法用于在指定的别名和保护参数的帮助下获取此实例的 key 库条目。
用法:
public final KeyStore.Entry getEntry(String alias, KeyStore.ProtectionParameter protParam) throws NoSuchAlgorithmException, UnrecoverableEntryException, KeyStoreException
参数:此方法接受以下参数作为参数。
- alias:是要获取的 key 库条目的名称。
- protParam:其中包含用于访问 key 库的密码。
返回值:此方法返回所请求别名的 key 库条目(如果存在)。
异常:此方法引发以下异常
- NullPointerException :空别名。
- NoSuchAlgorithmException:如果缺少算法。
- UnrecoverableEntryException:如果指定的密码无效。
- KeyStoreException:如果 key 库尚未初始化(加载)。
注意:由于不存在“ privatekey” key 库,因此本文中的所有程序都无法在在线IDE上运行。您可以在系统上的Java编译器上检查此代码。要检查此代码,请在系统上创建 key 库“ privatekey”,并设置自己的 key 库密码以访问该 key 库。
下面是说明getCertificate()方法的示例:
示例1:
// Java program to demonstrate getEntry() method
import java.security.*;
import java.security.cert.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
try {
// creating the object of KeyStore
// and getting instance
KeyStore sr = KeyStore.getInstance("JKS");
// Keystore password is required
// to access Keystore
char[] pass = ("123456").toCharArray();
// creating and initializing object of InputStream
InputStream is
= new FileInputStream(
"f:/java/private key.store");
// initializing keystore object
sr.load(is, pass);
// creating and initializing
// KeyStore.ProtectionParameter object
KeyStore.ProtectionParameter entryPassword
= new KeyStore.PasswordProtection(pass);
// getting KeyStore.PrivateKeyEntry object
// using getEntry() method
KeyStore.PrivateKeyEntry prient
= (KeyStore.PrivateKeyEntry)sr
.getEntry("ftpkey", entryPassword);
// display the result
System.out.println("PrivateKey of particular entry: "
+ prient.getPrivateKey());
}
catch (NoSuchAlgorithmException e) {
System.out.println("Exception thrown : " + e);
}
catch (NullPointerException e) {
System.out.println("Exception thrown : " + e);
}
catch (KeyStoreException e) {
System.out.println("Exception thrown : " + e);
}
catch (FileNotFoundException e) {
System.out.println("Exception thrown : " + e);
}
catch (IOException e) {
System.out.println("Exception thrown : " + e);
}
catch (CertificateException e) {
System.out.println("Exception thrown : " + e);
}
catch (UnrecoverableEntryException e) {
System.out.println("Exception thrown : " + e);
}
}
}
注:本文由纯净天空筛选整理自 KeyStore getEntry() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。