Saturday, September 6, 2025
HomeLanguagesJavaKeyPairGenerator generateKeyPair() method in Java with Examples

KeyPairGenerator generateKeyPair() method in Java with Examples

The generateKeyPair() method of java.security.KeyPairGenerator class is used to Generates a key pair.
If this KeyPairGenerator has not been initialized explicitly, provider-specific defaults will be used for the size and other (algorithm-specific) values of the generated keys.
This will generate a new key pair every time it is called.
Syntax: 
 

public KeyPair generateKeyPair()

Return Value: This method returns the generated key pair.
Below are the examples to illustrate the generateKeyPair() method
Note: The following program will not run on online IDE.
Example 1: With initialization 
 

Java




// Java program to demonstrate
// generateKeyPair() 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 kpg = KeyPairGenerator
                                       .getInstance("RSA");
 
            // initializing with 1024
            kpg.initialize(1024);
 
            // getting key pairs
            // using generateKeyPair() method
            KeyPair kp = kpg.generateKeyPair();
 
            // printing the number of byte
            System.out.println("Keypair : " + kp);
        }
 
        catch (NoSuchAlgorithmException e) {
 
            System.out.println("Exception thrown : " + e);
        }
    }
}


Output: 
 

Keypair : java.security.KeyPair@12a3a380

Example 2: Without Initialization 
 

Java




// Java program to demonstrate
// generateKeyPair() 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 kpg = KeyPairGenerator.getInstance("RSA");
 
            // getting key pairs
            // using generateKeyPair() method
            KeyPair kp = kpg.generateKeyPair();
 
            // printing the number of byte
            System.out.println("Keypair : " + kp);
        }
 
        catch (NoSuchAlgorithmException e) {
 
            System.out.println("Exception thrown : " + e);
        }
    }
}


Output: 
 

Keypair : java.security.KeyPair@12a3a380

 

RELATED ARTICLES

Most Popular

Dominic
32270 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11803 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6705 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS