Saturday, October 25, 2025
HomeLanguagesJavaProvider toString() method in Java with Examples

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
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS