AlgorithmParameterGenerator getAlgorithm() method in Java with Examples
The getAlgorithm() method of java.security.AlgorithmParameterGenerator class is used to return the standard name of the algorithm this parameter generator is associated with.
Syntax:
public final String getAlgorithm()
Return Value: This method returns the string name of the algorithm.
Below are the examples to illustrate the getAlgorithm() method:
Example 1: For Algorithm DSA
// Java program to demonstrate // getAlgorithm() method import java.security.*; import java.util.*; public class GFG1 { public static void main(String[] argv) { try { // creating the object of // AlgorithmParameterGenerator // and getting instance // using getInstance() method AlgorithmParameterGenerator sr = AlgorithmParameterGenerator .getInstance("DSA"); // initializing the AlgorithmParameterGenerator // with 1024 using initialize() method sr.init(1024); // genrating the Parameters // using getAlgorithm() method String algo = sr.getAlgorithm(); // printing the string algo System.out.println("Algorithm : " + algo); } catch (NoSuchAlgorithmException e) { System.out.println("Exception thrown : " + e); } catch (ProviderException e) { System.out.println("Exception thrown : " + e); } } } |
chevron_right
filter_none
Output:
Algorithm : DSA
Example 2: For Algorithm DiffieHellman
// Java program to demonstrate // getAlgorithm() method import java.security.*; import java.util.*; public class GFG1 { public static void main(String[] argv) { try { // creating the object of // AlgorithmParameterGenerator // and getting instance // using getInstance() method AlgorithmParameterGenerator sr = AlgorithmParameterGenerator .getInstance("DiffieHellman"); // initializing the AlgorithmParameterGenerator // with 1024 using initialize() method sr.init(1024); // genrating the Parameters // using getAlgorithm() method String algo = sr.getAlgorithm(); // printing the string algo System.out.println("Algorithm : " + algo); } catch (NoSuchAlgorithmException e) { System.out.println("Exception thrown : " + e); } catch (ProviderException e) { System.out.println("Exception thrown : " + e); } } } |
chevron_right
filter_none
Output:
Algorithm : DiffieHellman
Recommended Posts:
- AlgorithmParameterGenerator generateParameters() method in Java with Examples
- AlgorithmParameterGenerator getProvider() method in Java with Examples
- Java Signature getAlgorithm() method with Examples
- KeyPairGenerator getAlgorithm() method in Java with Examples
- SecureRandom getAlgorithm() method in Java with Examples
- KeyFactory getAlgorithm() method in Java with Examples
- Java lang.Long.lowestOneBit() method in Java with Examples
- Java lang.Long.highestOneBit() method in Java with Examples
- Java lang.Long.builtcount() method in Java with Examples
- Java.lang.Short toString() method in Java with Examples
- Java lang.Long.numberOfTrailingZeros() method in Java with Examples
- Java lang.Long.reverse() method in Java with Examples
- Java.util.Collections.rotate() Method in Java with Examples
- Java lang.Long.numberOfLeadingZeros() method in Java with Examples
- Java.util.Collections.disjoint() Method in java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



