Método getInfo() del proveedor en Java con ejemplos

El método getInfo() de la clase java.security.Provider se utiliza para devolver una descripción legible por humanos del proveedor y sus servicios. Esto puede devolver una página HTML, con enlaces relevantes.

Sintaxis:

public String getInfo()

Valor devuelto: este método devuelve una descripción del proveedor y sus servicios.

A continuación se muestran los ejemplos para ilustrar el método getInfo() :

Ejemplo 1:

// Java program to demonstrate
// get() method
  
import java.security.*;
import java.util.*;
  
public class GFG1 {
    public static void main(String[] argv) throws Exception
    {
  
        try {
            // creating the object of  KeyPairGenerator
            KeyPairGenerator sr = KeyPairGenerator.getInstance("DSA", "SUN");
  
            // getting the Provider of the KeyPairGenerator sr
            // by using method getProvider()
            Provider provider = sr.getProvider();
  
            // getting the info
            String info = provider.getInfo();
  
            // printing the string info
            System.out.println("info : " + info);
        }
  
        catch (NoSuchAlgorithmException e) {
  
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción:

info : 
SUN (DSA key/parameter generation;
    DSA signing; SHA-1, MD5 digests; 
    SecureRandom; X.509 certificates; 
    JKS & DKS keystores; 
    PKIX CertPathValidator; 
    PKIX CertPathBuilder; 
    LDAP, Collection CertStores, JavaPolicy Policy; 
    JavaLoginConfig Configuration)

Ejemplo 2:

// Java program to demonstrate
// get() method
  
import java.security.*;
import java.util.*;
  
public class GFG1 {
    public static void main(String[] argv) throws Exception
    {
  
        try {
            // creating the object of  SecureRandom
            SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
  
            // getting the Provider of the SecureRandom sr
            // by using method getProvider()
            Provider provider = sr.getProvider();
  
            // getting the info
            String info = provider.getInfo();
  
            // printing the string info
            System.out.println("info : " + info);
        }
  
        catch (NoSuchAlgorithmException e) {
  
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción:

info : 
SUN (DSA key/parameter generation; 
    DSA signing; SHA-1, MD5 digests; 
    SecureRandom; X.509 certificates; 
    JKS & DKS keystores; 
    PKIX CertPathValidator; 
    PKIX CertPathBuilder; 
    LDAP, Collection CertStores, JavaPolicy Policy; 
    JavaLoginConfig Configuration)

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 *