Método Java Signature toString() con ejemplos

El método toString() de la clase java.security.Signature se utiliza para devolver una representación de string del objeto de la firma, proporcionando información que incluye el estado del objeto y el nombre del algoritmo utilizado.

Sintaxis:

public String toString()

Valor devuelto: este método devuelve una representación de string de este objeto de firma.

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 the object of Signature
            Signature sr = Signature.getInstance("SHA1withDSA");
  
            // getting the String representation
            // by using method toString()
            String status = sr.toString();
  
            // printing the provider name
            System.out.println("Status : " + status);
        }
  
        catch (NoSuchAlgorithmException e) {
  
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción:

Status : Signature object: SHA1withDSA

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 the object of Signature
            Signature sr = Signature.getInstance("NONEwithDSA");
  
            // getting the String representation
            // by using method toString()
            String status = sr.toString();
  
            // printing the provider name
            System.out.println("Status : " + status);
        }
  
        catch (NoSuchAlgorithmException e) {
  
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción:

Status : Signature object: 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 *