El método getAlgorithm() de la clase java.security.SecureRandom se utiliza para devolver el nombre del algoritmo implementado por este objeto SecureRandom.
Sintaxis:
public String getAlgorithm()
Valor devuelto: este método devuelve el nombre del algoritmo o desconocido si no se puede determinar el nombre del algoritmo.
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 SecureRandom SecureRandom sr = SecureRandom.getInstance("SHA1PRNG"); // 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: SHA1PRNG
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 SecureRandom SecureRandom sr = SecureRandom.getInstance("TAJMAHAL"); // getting the Algorithm // by using method getAlgorithm() String algo = sr.getAlgorithm(); // printing the string algo System.out.println(algo); } catch (NoSuchAlgorithmException e) { System.out.println("Exception thrown : " + e); } } }
Producción:
Exception thrown : java.security.NoSuchAlgorithmException: TAJMAHAL SecureRandom not available
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA