W3cubDocs

/OpenJDK 8

Class MGF1ParameterSpec

All Implemented Interfaces:
AlgorithmParameterSpec
public class MGF1ParameterSpec
extends Object
implements AlgorithmParameterSpec

This class specifies the set of parameters used with mask generation function MGF1 in OAEP Padding and RSA-PSS signature scheme, as defined in the PKCS #1 v2.1 standard.

Its ASN.1 definition in PKCS#1 standard is described below:

MGF1Parameters ::= OAEP-PSSDigestAlgorthms
where
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 },
   ...  -- Allows for future expansion --
 }
Since:
1.5
See Also:
PSSParameterSpec, OAEPParameterSpec

Fields

SHA1

public static final MGF1ParameterSpec SHA1

The MGF1ParameterSpec which uses "SHA-1" message digest.

SHA224

public static final MGF1ParameterSpec SHA224

The MGF1ParameterSpec which uses "SHA-224" message digest.

SHA256

public static final MGF1ParameterSpec SHA256

The MGF1ParameterSpec which uses "SHA-256" message digest.

SHA384

public static final MGF1ParameterSpec SHA384

The MGF1ParameterSpec which uses "SHA-384" message digest.

SHA512

public static final MGF1ParameterSpec SHA512

The MGF1ParameterSpec which uses SHA-512 message digest.

Constructors

MGF1ParameterSpec

public MGF1ParameterSpec(String mdName)

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 - if mdName is null.

Methods

getDigestAlgorithm

public String getDigestAlgorithm()

Returns the algorithm name of the message digest used by the mask generation function.

Returns:
the algorithm name of the message digest.

© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.