- java.lang.Object
-
- java.security.DrbgParameters.NextBytes
-
- All Implemented Interfaces:
-
SecureRandomParameters
- Enclosing class:
- DrbgParameters
public static final class DrbgParameters.NextBytes extends Object implements SecureRandomParameters
用于随机位生成的DRBG参数。 它用于SecureRandom.nextBytes(byte[], SecureRandomParameters)
。- 从以下版本开始:
- 9
-
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 byte[]
getAdditionalInput()
返回请求的附加输入。boolean
getPredictionResistance()
返回是否请求预测电阻。int
getStrength()
返回以位为单位的安全强度。
-
-
-
方法详细信息
-
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.
-
-