- java.lang.Object
-
- javax.crypto.spec.PSource
-
- 已知直接子类:
-
PSource.PSpecified
public class PSource extends Object
此类指定在OAEP填充中编码输入P的源,如PKCS#1 v2.2标准中所定义。PSourceAlgorithm ::= AlgorithmIdentifier { {PKCS1PSourceAlgorithms} }
哪里PKCS1PSourceAlgorithms ALGORITHM-IDENTIFIER ::= { { OID id-pSpecified PARAMETERS EncodingParameters }, ... -- Allows for future expansion -- } EncodingParameters ::= OCTET STRING(SIZE(0..MAX))
- 从以下版本开始:
- 1.5
-
-
嵌套类汇总
嵌套类 变量和类型 类 描述 static class
PSource.PSpecified
此类用于在OAEP填充中显式指定编码输入P的值。
-
-
-
构造方法详细信息
-
PSource
protected PSource(String pSrcName)
使用指定的PSource算法构造PKCS#1标准中定义的OAEP填充的编码输入P的源。- 参数
-
pSrcName
- 编码输入源P的算法 - 异常
-
NullPointerException
- 如果pSrcName
为空。
-
-
方法详细信息
-
getAlgorithm
public String getAlgorithm()
返回PSource算法名称。- 结果
- PSource算法名称。
-
-