Class MGF1ParameterSpec
java.lang.Object
java.security.spec.MGF1ParameterSpec
- All Implemented Interfaces:
AlgorithmParameterSpec
This class specifies the set of parameters used with mask generation
function MGF1 in OAEP Padding and RSASSA-PSS signature scheme, as
defined in the
PKCS#1 v2.2 standard.
Its ASN.1 definition in PKCS#1 standard is described below:
PKCS1MGFAlgorithms ALGORITHM-IDENTIFIER ::= { { OID id-mgf1 PARAMETERS HashAlgorithm }, ... -- Allows for future expansion -- }where
HashAlgorithm ::= AlgorithmIdentifier { {OAEP-PSSDigestAlgorithms} } OAEP-PSSDigestAlgorithms ALGORITHM-IDENTIFIER ::= { { OID id-sha1 PARAMETERS NULL }| { OID id-sha224 PARAMETERS NULL }| { OID id-sha256 PARAMETERS NULL }| { OID id-sha384 PARAMETERS NULL }| { OID id-sha512 PARAMETERS NULL }| { OID id-sha512-224 PARAMETERS NULL }| { OID id-sha512-256 PARAMETERS NULL }, ... -- Allows for future expansion -- }
- Since:
- 1.5
- External Specifications
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final MGF1ParameterSpec
TheMGF1ParameterSpec
uses a "SHA-1" message digest.static final MGF1ParameterSpec
TheMGF1ParameterSpec
uses a "SHA-224" message digest.static final MGF1ParameterSpec
TheMGF1ParameterSpec
uses a "SHA-256" message digest.static final MGF1ParameterSpec
TheMGF1ParameterSpec
uses a "SHA3-224" message digest.static final MGF1ParameterSpec
TheMGF1ParameterSpec
uses a "SHA3-256" message digest.static final MGF1ParameterSpec
TheMGF1ParameterSpec
uses a "SHA3-384" message digest.static final MGF1ParameterSpec
TheMGF1ParameterSpec
uses a "SHA3-512" message digest.static final MGF1ParameterSpec
TheMGF1ParameterSpec
uses a "SHA-384" message digest.static final MGF1ParameterSpec
TheMGF1ParameterSpec
uses a "SHA-512" message digest.static final MGF1ParameterSpec
TheMGF1ParameterSpec
uses a "SHA-512/224" message digest.static final MGF1ParameterSpec
TheMGF1ParameterSpec
uses a "SHA-512/256" message digest. -
Constructor Summary
ConstructorsConstructorDescriptionMGF1ParameterSpec
(String mdName) Constructs a parameter set for mask generation function MGF1 as defined in the PKCS #1 standard. -
Method Summary
Modifier and TypeMethodDescriptionReturns the algorithm name of the message digest used by the mask generation function.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
SHA1
TheMGF1ParameterSpec
uses a "SHA-1" message digest. -
SHA224
TheMGF1ParameterSpec
uses a "SHA-224" message digest. -
SHA256
TheMGF1ParameterSpec
uses a "SHA-256" message digest. -
SHA384
TheMGF1ParameterSpec
uses a "SHA-384" message digest. -
SHA512
TheMGF1ParameterSpec
uses a "SHA-512" message digest. -
SHA512_224
TheMGF1ParameterSpec
uses a "SHA-512/224" message digest.- Since:
- 11
-
SHA512_256
TheMGF1ParameterSpec
uses a "SHA-512/256" message digest.- Since:
- 11
-
SHA3_224
TheMGF1ParameterSpec
uses a "SHA3-224" message digest.- Since:
- 16
-
SHA3_256
TheMGF1ParameterSpec
uses a "SHA3-256" message digest.- Since:
- 16
-
SHA3_384
TheMGF1ParameterSpec
uses a "SHA3-384" message digest.- Since:
- 16
-
SHA3_512
TheMGF1ParameterSpec
uses a "SHA3-512" message digest.- Since:
- 16
-
-
Constructor Details
-
MGF1ParameterSpec
Constructs a parameter set for mask generation function MGF1 as defined in the PKCS #1 standard.- Parameters:
mdName
- the algorithm name for the message digest used in this mask generation function MGF1.- Throws:
NullPointerException
- ifmdName
is null.
-
-
Method Details
-
getDigestAlgorithm
Returns the algorithm name of the message digest used by the mask generation function.- Returns:
- the algorithm name of the message digest.
-