當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java KeyPairGenerator getAlgorithm()用法及代碼示例


java.security.KeyPairGenerator類的getAlgorithm()方法用於返回此 key 對生成器的算法的標準名稱。有關標準算法名稱的信息,請參見Java密碼體係結構標準算法名稱文檔中的KeyPairGenerator部分。

用法:

public String getAlgorithm()

返回值:此方法返回算法的標準字符串名稱。


以下示例說明了getAlgorithm()方法

示例1:

// Java program to demonstrate 
// genKeyPair() 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"); 
  
            // fetching the Algorithm 
            // using getAlgorithm() method 
            String algo = kpg.getAlgorithm(); 
  
            // pritning the string algo 
            System.out.println("Algorithm : " + algo); 
        } 
  
        catch (NoSuchAlgorithmException e) { 
  
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
輸出:
Algorithm : RSA

示例2:

// Java program to demonstrate 
// genKeyPair() 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("DiffieHellman"); 
  
            // fetching the Algorithm 
            // using getAlgorithm() method 
            String algo = kpg.getAlgorithm(); 
  
            // pritning the string algo 
            System.out.println("Algorithm : " + algo); 
        } 
  
        catch (NoSuchAlgorithmException e) { 
  
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
輸出:
Algorithm : DiffieHellman


相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 KeyPairGenerator getAlgorithm() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。