- java.lang.Object
-
- java.security.DrbgParameters.NextBytes
-
- 实现的所有接口
-
SecureRandomParameters
- Enclosing class:
- DrbgParameters
public static final class DrbgParameters.NextBytes extends Object implements SecureRandomParameters
用于随机位生成的DRBG参数。 它用于SecureRandom.nextBytes(byte[], SecureRandomParameters)
。- 从以下版本开始:
- 9
-
-
方法详细信息
-
getStrength
public int getStrength()
返回以位为单位请求的安全强度。- 结果
- 要求的强度,或者如果应该使用有效强度,则为-1。
-
getPredictionResistance
public boolean getPredictionResistance()
返回是否请求预测阻力。- 结果
- 是否要求预测阻力
-
getAdditionalInput
public byte[] getAdditionalInput()
返回请求的附加输入。- 结果
-
the requested additional input,
null
if not requested. A new byte array is returned each time this method is called.
-
-