Most visited

Recently visited

Added in API level 1

PSource

public class PSource
extends Object

java.lang.Object
   ↳ javax.crypto.spec.PSource
Known Direct Subclasses


该类指定用于在OAEP填充中编码输入P的源,如 PKCS #1标准中所定义。

 PKCS1PSourceAlgorithms    ALGORITHM-IDENTIFIER ::= {
   { OID id-pSpecified PARAMETERS OCTET STRING },
   ...  -- Allows for future expansion --
 }
 

Summary

Nested classes

class PSource.PSpecified

该类用于明确指定在OAEP填充中编码输入P的值。

Protected constructors

PSource(String pSrcName)

使用指定的PSource算法构建PKCS#1标准中定义的用于OAEP填充的编码输入P的源。

Public methods

String getAlgorithm()

返回PSource算法名称。

Inherited methods

From class java.lang.Object

Protected constructors

PSource

Added in API level 1
PSource (String pSrcName)

使用指定的PSource算法构建PKCS#1标准中定义的用于OAEP填充的编码输入P的源。

Parameters
pSrcName String: the algorithm for the source of the encoding input P.
Throws
NullPointerException if pSrcName is null.

Public methods

getAlgorithm

Added in API level 1
String getAlgorithm ()

返回PSource算法名称。

Returns
String the PSource algorithm name.

Hooray!