VOOZH about

URL: https://www.geeksforgeeks.org/java/keystore-iscertificateentry-method-in-java-with-examples/

⇱ KeyStore isCertificateEntry() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

KeyStore isCertificateEntry() method in Java with Examples

Last Updated : 24 Jan, 2023

The isCertificateEntry() method of java.security.KeyStore class is used to check if the specified Certificate entry is present in this KeyStore instance. It returns a boolean value representing the same. 

Syntax:

public final boolean isCertificateEntry(String alias)
 throws KeyStoreException

Parameter: This method accepts the name of the alias as a parameter whose certificate entry to be checked. 

Return Value: This method checks the presence of certificate entry for the requested alias if it exists and returns a boolean value.

Exception: This method throws KeyStoreException if the keystore has not been initialized. 

Note: All the programs in this article won’t run on online IDE as no ‘privatekey’ Keystore exists. You can check this code on the Java compiler on your system. To check this code, create a Keystore ‘privatekey’ on your system and set your own Keystore password to access that Keystore. 

Below are the examples to illustrate the isCertificateEntry() method: 
Example 1: 

Output: 👁 Image

Example 2: For KeyStoreException 

Comment