El método getMessageDigest() de la clase java.security.DigestInputStream proporciona el MessageDigest asignado a este objeto DigestInputStream.
Sintaxis:
public MessageDigest getMessageDigest()
Valor devuelto: este método devuelve el objeto MessageDigest que se le ha asignado.
Nota: Todos los programas de este artículo no se ejecutarán en IDE en línea ya que no existe un archivo de ‘nombre’. Puede verificar este código en el compilador de Java en su sistema. Para verificar este código, cree un archivo ‘nombre’ en su sistema.
A continuación se muestran los ejemplos para ilustrar el método getMessageDigest() :
Ejemplo 1:
Java
// Java program to demonstrate // getInstance() method import java.security.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { try { // creating the object of MessageDigest // and getting instance // By using getInstance() method MessageDigest sr = MessageDigest.getInstance("MD5"); // creating and initializing // object of InputStream InputStream is = new FileInputStream("f:/java/name.txt"); // creating and initializing // object of DigestInputStream DigestInputStream di = new DigestInputStream(is, sr); // getting the message digest // using getMessageDigest() method MessageDigest str = di.getMessageDigest(); // display the result System.out.println("Status : " + str.toString()); } catch (NoSuchAlgorithmException e) { System.out.println("Exception thrown : " + e); } catch (NullPointerException e) { System.out.println("Exception thrown : " + e); } catch (FileNotFoundException e) { System.out.println("Exception thrown : " + e); } } }
Status : MD5 Message Digest from SUN,
Ejemplo 2:
Java
// Java program to demonstrate // getInstance() method import java.security.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { try { // creating the object of MessageDigest // and getting instance // By using getInstance() method MessageDigest sr = MessageDigest.getInstance("SHA-1"); // creating and initializing // object of InputStream InputStream is = new FileInputStream("f:/java/name.txt"); // creating and initializing// object of DigestInputStream DigestInputStream di = new DigestInputStream(is, sr); // getting the message digest // using getMessageDigest() method MessageDigest str = di.getMessageDigest(); // printing the status System.out.println("Status : " + str.toString()); } catch (NoSuchAlgorithmException e) { System.out.println("Exception thrown : " + e); } catch (NullPointerException e) { System.out.println("Exception thrown : " + e); } catch (FileNotFoundException e) { System.out.println("Exception thrown : " + e); } } }
Status : SHA-1 Message Digest from SUN,
Referencia: https://docs.oracle.com/javase/9/docs/api/java/security/DigestInputStream.html#getMessageDigest–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA