El método toString() de la clase java.security.MessageDigest se utiliza para proporcionar el objeto del resumen del mensaje en formato de string.
Sintaxis:
public String toString()
Valor devuelto: este método devuelve el objeto del resumen del mensaje en formato de string.
A continuación se muestran los ejemplos para ilustrar el método toString() :
Ejemplo 1:
// Java program to demonstrate // toString() method import java.security.*; import java.util.*; public class GFG1 { public static void main(String[] argv) { try { // creating object of MessageDigest MessageDigest msd1 = MessageDigest.getInstance("MD5"); // getting the string value of msd1 // using toString() method String nv = msd1.toString(); // display the result System.out.println("MessageDigest : " + nv); } catch (NoSuchAlgorithmException e) { System.out.println("Exception thrown : " + e); } catch (ProviderException e) { System.out.println("Exception thrown : " + e); } } }
Producción:
MessageDigest : MD5 Message Digest from SUN, <initialized>
Ejemplo 2:
// Java program to demonstrate // toString() method import java.security.*; import java.util.*; public class GFG1 { public static void main(String[] argv) { try { // creating object of MessageDigest MessageDigest msd1 = MessageDigest.getInstance("SHA-256"); // getting the string value of msd1 // using toString() method String nv = msd1.toString(); // display the result System.out.println("MessageDigest : " + nv); } catch (NoSuchAlgorithmException e) { System.out.println("Exception thrown : " + e); } catch (ProviderException e) { System.out.println("Exception thrown : " + e); } } }
Producción:
MessageDigest : SHA-256 Message Digest from SUN, <initialized>
Referencia: https://docs.oracle.com/javase/9/docs/api/java/security/MessageDigest.html#toString–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA