Método KeyStore getCertificate() en Java con ejemplos

El método getCertificate() de la clase java.security.KeyStore se utiliza para proporcionar el certificado para el alias solicitado. .
Sintaxis: 
 

public final Certificate
  getCertificate(String alias)
  throws KeyStoreException

Parámetro: este método acepta el nombre del alias como parámetro cuyo certificado se va a buscar.
Valor devuelto: este método devuelve el certificado para el alias solicitado, si existe.
Excepción: este método lanza KeyStoreException si no inicializa este almacén de claves.
Nota: Todos los programas de este artículo no se ejecutarán en un IDE en línea, ya que no existe un almacén de claves de «clave privada». Puede verificar este código en el compilador de Java en su sistema. Para verificar este código, cree una ‘clave privada’ de almacén de claves en su sistema y configure su propia contraseña de almacén de claves para acceder a ese almacén de claves.
A continuación se muestran los ejemplos para ilustrar el método getCertificate() :
Ejemplo 1: 
 

Java

// Java program to demonstrate
// getCertificate() 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
            // By using getInstance() method
            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);
 
            // getting the certificate
            // using getCertificate() method
            X509Certificate cert
                = (X509Certificate)sr
                      .getCertificate("ftpkey");
 
            // display the result
            System.out.println("Certificate version : "
                               + cert.getVersion());
        }
 
        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);
        }
    }
}
Producción: 

Certificate version : 3

 

Ejemplo 2: para KeyStoreException 
 

Java

// Java program to demonstrate
// getCertificate() 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
            // By using getInstance() method
            KeyStore sr = KeyStore.getInstance("JKS");
 
            // initializing keystore object
            // sr.load(is, pass);
 
            // getting the certificate
            // using getCertificate() method
            X509Certificate cert
                = (X509Certificate)sr
                      .getCertificate("ftpkey");
 
            // display the result
            System.out.println("Certificate version : "
                               + cert.getVersion());
        }
        catch (NullPointerException e) {
 
            System.out.println("Exception thrown : " + e);
        }
        catch (KeyStoreException e) {
 
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción: 

Exception thrown :
 java.security.KeyStoreException:
 Uninitialized keystore

 

Referencia: https://docs.oracle.com/javase/9/docs/api/java/security/KeyStore.html#getCertificate-java.lang.String-
 

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *