当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。