Package com.pdftools.crypto
Enum SignaturePaddingType
- All Implemented Interfaces:
Serializable,Comparable<SignaturePaddingType>
Padding scheme of the cryptographic signature algorithm
The signature algorithm is defined by the signing certificate's key type. For example, RSA or ECDSA. For some keys, e.g. RSA keys, there are different padding algorithms. Some cryptographic providers let you set this padding algorithm. However, this only has an effect on signatures created by the cryptographic provider itself. All signed data acquired from external sources may use other signing algorithms; more specifically, the issuer certificates of the trust chain, the time-stamp’s signature, or those used for the revocation information (CRL, OCSP). It is recommended to verify that the algorithms of all signatures provide a similar level of security.-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDefault padding schemeRSA with PKCS#1 padding schemeRSA with Probabilistic Signature Scheme (PSS) -
Method Summary
Modifier and TypeMethodDescriptionstatic SignaturePaddingTypeReturns the enum constant of this type with the specified name.static SignaturePaddingType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
Default padding scheme
The default padding scheme. Used for theSignatureAlgorithm.ECDSAsignature algorithm. -
RSA_RSA
RSA with PKCS#1 padding scheme
Padding scheme for RSA keys that corresponds to theSignatureAlgorithm.RSA_RSAsignature algorithm. -
RSA_SSA_PSS
RSA with Probabilistic Signature Scheme (PSS)
Padding scheme for RSA keys that corresponds to theSignatureAlgorithm.RSA_SSA_PSSsignature algorithm.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-