The toString() method of java.security.Signature class is used to return a string representation of thesignature object, providing information that includes the state of the object and the name of the algorithm used.
Syntax:
public String toString()
Return Value: This method returns a string representation of this signature object.
Below are the examples to illustrate the toString() method:
Example 1:
import java.security.*;
import java.util.*;
public class GFG1 {
public static void main(String[] argv)
{
try {
Signature sr = Signature.getInstance( "SHA1withDSA" );
String status = sr.toString();
System.out.println( "Status : " + status);
}
catch (NoSuchAlgorithmException e) {
System.out.println( "Exception thrown : " + e);
}
}
}
|
Output:
Status : Signature object: SHA1withDSA
Example 2:
import java.security.*;
import java.util.*;
public class GFG1 {
public static void main(String[] argv)
{
try {
Signature sr = Signature.getInstance( "NONEwithDSA" );
String status = sr.toString();
System.out.println( "Status : " + status);
}
catch (NoSuchAlgorithmException e) {
System.out.println( "Exception thrown : " + e);
}
}
}
|
Output:
Status : Signature object: NONEwithDSA