java.security.SecureRandom類的getAlgorithm()方法用於返回由此SecureRandom對象實現的算法的名稱。
用法:
public String getAlgorithm()
返回值:此方法返回算法的名稱,如果無法確定算法名稱,則返回未知。
下麵是說明getAlgorithm()方法的示例:
示例1:
// 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 SecureRandom
SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
// geting the Algorithm
// by using method getAlgorithm()
String algo = sr.getAlgorithm();
// printing the string algo
System.out.println("Algorithm: " + algo);
}
catch (NoSuchAlgorithmException e) {
System.out.println("Exception thrown : " + e);
}
}
}
輸出:
Algorithm: SHA1PRNG
示例2:
// 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 SecureRandom
SecureRandom sr = SecureRandom.getInstance("TAJMAHAL");
// geting the Algorithm
// by using method getAlgorithm()
String algo = sr.getAlgorithm();
// printing the string algo
System.out.println(algo);
}
catch (NoSuchAlgorithmException e) {
System.out.println("Exception thrown : " + e);
}
}
}
輸出:
Exception thrown : java.security.NoSuchAlgorithmException: TAJMAHAL SecureRandom not available
相關用法
- Java MessageDigest getAlgorithm()用法及代碼示例
- Java KeyPairGenerator getAlgorithm()用法及代碼示例
- Java AlgorithmParameters getAlgorithm()用法及代碼示例
- Java KeyFactory getAlgorithm()用法及代碼示例
- Java AlgorithmParameterGenerator getAlgorithm()用法及代碼示例
- Java Signature getAlgorithm()用法及代碼示例
- Java Provider.Service getAlgorithm()用法及代碼示例
- Java SecureRandom getInstance()用法及代碼示例
- Java SecureRandom setSeed()用法及代碼示例
- Java SecureRandom generateSeed()用法及代碼示例
- Java SecureRandom getProvider()用法及代碼示例
- Java SecureRandom nextBytes()用法及代碼示例
- Java SecureRandom getSeed()用法及代碼示例
- Java Java.util.Collections.rotate()用法及代碼示例
- Java Java lang.Long.numberOfTrailingZeros()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 SecureRandom getAlgorithm() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。