VOOZH about

URL: https://www.geeksforgeeks.org/java/provider-getinfo-method-in-java-with-examples/

⇱ Provider getInfo() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Provider getInfo() method in Java with Examples

Last Updated : 17 Jan, 2023

The getInfo() method of java.security.Provider class is used to return a human-readable description of the provider and its services. This may return an HTML page, with relevant links. 

Syntax:

public String getInfo()

Return Value: This method returns a description of the provider and its services. 

Below are the examples to illustrate the getInfo() method: 

Example 1: 

Output:
info : 
SUN (DSA key/parameter generation;
 DSA signing; SHA-1, MD5 digests; 
 SecureRandom; X.509 certificates; 
 JKS & DKS keystores; 
 PKIX CertPathValidator; 
 PKIX CertPathBuilder; 
 LDAP, Collection CertStores, JavaPolicy Policy; 
 JavaLoginConfig Configuration)

Example 2: 

Output:
info : 
SUN (DSA key/parameter generation; 
 DSA signing; SHA-1, MD5 digests; 
 SecureRandom; X.509 certificates; 
 JKS & DKS keystores; 
 PKIX CertPathValidator; 
 PKIX CertPathBuilder; 
 LDAP, Collection CertStores, JavaPolicy Policy; 
 JavaLoginConfig Configuration)
Comment