所有类
javax.crypto.spec
类 PSource
java.lang.Object
javax.crypto.spec.PSource
-
直接已知子类:
-
PSource.PSpecified
-
public class PSource
- extends Object
此类为在 OAEP 冗余中的编码输入 P 指定源,OAEP 冗余在 PKCS #1 标准中定义。
PKCS1PSourceAlgorithms ALGORITHM-IDENTIFIER ::= {
{ OID id-pSpecified PARAMETERS OCTET STRING },
... -- Allows for future expansion --
}
-
从以下版本开始:
-
1.5
构造方法摘要 |
protected |
PSource(String pSrcName) 使用指定的 PSource 算法为 PKCS #1 标准中定义的 OAEP 冗余构造一个编码输入 P 的源。 |
从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PSource
protected PSource(String pSrcName)
-
使用指定的 PSource 算法为 PKCS #1 标准中定义的 OAEP 冗余构造一个编码输入 P 的源。
-
参数:
-
pSrcName
- 编码输入 P 的源的算法。
-
抛出:
-
NullPointerException
- 如果 pSrcName
为 null。
getAlgorithm
public String getAlgorithm()
-
返回 PSource 算法名称。
-
-
返回:
-
PSource 算法名称。
所有类