- java.lang.Object
-
- javax.crypto.spec.PSource
-
- javax.crypto.spec.PSource.PSpecified
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class javax.crypto.spec.PSource
PSource.PSpecified
-
-
Field Summary
Fields Modifier and Type Field 描述 static PSource.PSpecified
DEFAULT
编码输入P的值等于byte [0]。
-
构造方法摘要
构造方法 Constructor 描述 PSpecified(byte[] p)
使用指定值p
明确构建源作为编码输入P.
-
-
-
字段详细信息
-
DEFAULT
public static final PSource.PSpecified DEFAULT
编码输入P的值等于byte [0]。
-
-
构造方法详细信息
-
PSpecified
public PSpecified(byte[] p)
使用指定值p
作为编码输入P明确构建源。注意:- 参数
-
p
- 编码输入的值。 复制数组的内容以防止后续修改。 - 异常
-
NullPointerException
- 如果p
为空。
-
-