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
import java.security.*;
import java.util.*;
public class GFG1 {
public static void main(String[] argv) throws Exception
{
try {
KeyPairGenerator sr = KeyPairGenerator.getInstance("DSA", "SUN");
Provider provider = sr.getProvider();
String nv = provider.toString();
System.out.println("Provider : " + nv);
}
catch (NoSuchAlgorithmException e) {
System.out.println("Exception thrown : " + e);
}
}
}
|
Output:
Provider : SUN version 1.8
Example 2:
Java
import java.security.*;
import java.util.*;
public class GFG1 {
public static void main(String[] argv) throws Exception
{
try {
SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
Provider provider = sr.getProvider();
String nv = provider.toString();
System.out.println("Provider : " + nv);
}
catch (NoSuchAlgorithmException e) {
System.out.println("Exception thrown : " + e);
}
}
}
|
Output:
Provider : SUN version 1.8
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!