Uses of Class
javax.crypto.spec.PSource
-
Packages that use PSource Package Description javax.crypto.spec Provides classes and interfaces for key specifications and algorithm parameter specifications. -
-
Uses of PSource in javax.crypto.spec
Subclasses of PSource in javax.crypto.spec Modifier and Type Class Description static class
PSource.PSpecified
This class is used to explicitly specify the value for encoding input P in OAEP Padding.Methods in javax.crypto.spec that return PSource Modifier and Type Method Description PSource
OAEPParameterSpec. getPSource()
Returns the source of encoding input P.Constructors in javax.crypto.spec with parameters of type PSource Constructor Description OAEPParameterSpec(String mdName, String mgfName, AlgorithmParameterSpec mgfSpec, PSource pSrc)
Constructs a parameter set for OAEP padding as defined in the PKCS #1 standard using the specified message digest algorithmmdName
, mask generation function algorithmmgfName
, parameters for the mask generation functionmgfSpec
, and source of the encoding input PpSrc
.
-