java.lang.Object
javax.crypto.spec.PSource
javax.crypto.spec.PSource.PSpecified
- 封装类:
-
PSource
该类用于明确指定OAEP填充中编码输入P的值。
- 自JDK版本:
- 1.5
-
Nested Class Summary
Nested classes/interfaces declared in class javax.crypto.spec.PSource
PSource.PSpecified
-
Field Summary
-
Constructor Summary
-
Method Summary
Methods declared in class javax.crypto.spec.PSource
getAlgorithm
-
Field Details
-
DEFAULT
编码输入P的值等于byte[0]。
-
-
Constructor Details
-
PSpecified
public PSpecified(byte[] p) 使用指定值p
明确构造源,作为编码输入P。注意:- 参数:
-
p
- 编码输入的值。为防止后续修改,数组内容会被复制。 - 抛出:
-
NullPointerException
- 如果p
为null。
-
-
Method Details
-
getValue
public byte[] getValue()返回编码输入P的值。- 返回:
- 编码输入P的值。每次调用此方法时都会返回一个新数组。
-