Método Java Signature getAlgorithm() con ejemplos

El método getAlgorithm() de la clase java.security.Signature se utiliza para devolver el nombre del algoritmo para este objeto de firma.
Sintaxis: 
 

public final String getAlgorithm()

Valor devuelto: este método devuelve el nombre del algoritmo para este objeto de firma.
A continuación se muestran los ejemplos para ilustrar el método getAlgorithm():
Ejemplo 1: 
 

Java

// Java program to demonstrate
// getAlgorithm() method
 
import java.security.*;
import java.util.*;
 
public class GFG1 {
    public static void main(String[] argv)
    {
        try {
 
            // creating the object of Signature
            Signature sr = Signature.getInstance("SHA1withDSA");
 
            // getting the Algorithm
            // by using method getAlgorithm()
            String algo = sr.getAlgorithm();
 
            // printing the string algo
            System.out.println("Algorithm: " + algo);
        }
 
        catch (NoSuchAlgorithmException e) {
 
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción: 

Algorithm: SHA1withDSA

 

Ejemplo 2: 
 

Java

// Java program to demonstrate
// getAlgorithm() method
 
import java.security.*;
import java.util.*;
 
public class GFG1 {
    public static void main(String[] argv)
    {
        try {
 
            // creating the object of Signature
            Signature sr = Signature.getInstance("NONEwithDSA");
 
            // getting the Algorithm
            // by using method getAlgorithm()
            String algo = sr.getAlgorithm();
 
            // printing the string algo
            System.out.println("Algorithm: " + algo);
        }
 
        catch (NoSuchAlgorithmException e) {
 
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción: 

Algorithm: NONEwithDSA

 

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 *