Provider toString() method in Java with Examples

The toString() method of java.security.Provider class is used to return a string with the name and the version number of this provider.
Syntax:
public String toString()
Return Value: This method returns the string with the name and the version number for this provider.Â
Below are the examples to illustrate the toString() method:Â
Example 1:Â
Java
// Java program to demonstrate// toString() methodÂ
import java.security.*;import java.util.*;Â
public class GFG1 {    public static void main(String[] argv) throws Exception    {Â
        try {            // creating the object of KeyPairGenerator            KeyPairGenerator sr = KeyPairGenerator.getInstance("DSA", "SUN");Â
            // getting the Provider of the KeyPairGenerator sr            // by using method getProvider()            Provider provider = sr.getProvider();Â
            // getting the name and version of the provider            // using toString() method            String nv = provider.toString();Â
            // printing the string info            System.out.println("Provider : " + nv);        }Â
        catch (NoSuchAlgorithmException e) {Â
            System.out.println("Exception thrown : " + e);        }    }} |
Output:
Provider : SUN version 1.8
Example 2:Â
Java
// Java program to demonstrate// toString() methodÂ
import java.security.*;import java.util.*;Â
public class GFG1 {    public static void main(String[] argv) throws Exception    {Â
        try {            // creating the object of SecureRandom            SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");Â
            // getting the Provider of the SecureRandom sr            // by using method getProvider()            Provider provider = sr.getProvider();Â
            // getting the name and version of the provider            // using toString() method            String nv = provider.toString();Â
            // printing the string info            System.out.println("Provider : " + nv);        }Â
        catch (NoSuchAlgorithmException e) {Â
            System.out.println("Exception thrown : " + e);        }    }} |
Output:
Provider : SUN version 1.8



