Liking cljdoc? Tell your friends :D

jdk.security.spec.MGF1ParameterSpec

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 -- }

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 --
}
raw docstring

*-sha-1clj

Static Constant.

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

type: java.security.spec.MGF1ParameterSpec

Static Constant.

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

type: java.security.spec.MGF1ParameterSpec
raw docstring

*-sha-224clj

Static Constant.

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

type: java.security.spec.MGF1ParameterSpec

Static Constant.

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

type: java.security.spec.MGF1ParameterSpec
raw docstring

*-sha-256clj

Static Constant.

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

type: java.security.spec.MGF1ParameterSpec

Static Constant.

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

type: java.security.spec.MGF1ParameterSpec
raw docstring

*-sha-384clj

Static Constant.

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

type: java.security.spec.MGF1ParameterSpec

Static Constant.

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

type: java.security.spec.MGF1ParameterSpec
raw docstring

*-sha-512clj

Static Constant.

The MGF1ParameterSpec which uses SHA-512 message digest.

type: java.security.spec.MGF1ParameterSpec

Static Constant.

The MGF1ParameterSpec which uses SHA-512 message digest.

type: java.security.spec.MGF1ParameterSpec
raw docstring

->mgf-1-parameter-specclj

(->mgf-1-parameter-spec md-name)

Constructor.

Constructs a parameter set for mask generation function MGF1 as defined in the PKCS #1 standard.

md-name - the algorithm name for the message digest used in this mask generation function MGF1. - java.lang.String

throws: java.lang.NullPointerException - if mdName is null.

Constructor.

Constructs a parameter set for mask generation function MGF1
 as defined in the PKCS #1 standard.

md-name - the algorithm name for the message digest used in this mask generation function MGF1. - `java.lang.String`

throws: java.lang.NullPointerException - if mdName is null.
raw docstring

get-digest-algorithmclj

(get-digest-algorithm this)

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

returns: the algorithm name of the message digest. - java.lang.String

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

returns: the algorithm name of the message digest. - `java.lang.String`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close