Interface IRSASSAPSSParams
- All Superinterfaces:
-
IASN1Encodable
- All Known Implementing Classes:
-
RSASSAPSSParamsBC
,RSASSAPSSParamsBCFips
Wrapper interface for BouncyCastle's representation of RSASSA-PSS parameters in ASN.1.
-
Method Summary
Modifier and TypeMethodDescriptionReturn theIAlgorithmIdentifier
describing the digest algorithm to be used in the signature.Return theIAlgorithmIdentifier
describing the mask generation function to be used in the signature.Return the salt length parameter.Return the trailer field parameter.Methods inherited from interface com.itextpdf.commons.bouncycastle.asn1.IASN1Encodable
isNull, toASN1Primitive
-
Method Details
-
getHashAlgorithm
IAlgorithmIdentifier getHashAlgorithm()Return theIAlgorithmIdentifier
describing the digest algorithm to be used in the signature.- Returns:
-
an
IAlgorithmIdentifier
-
getMaskGenAlgorithm
IAlgorithmIdentifier getMaskGenAlgorithm()Return theIAlgorithmIdentifier
describing the mask generation function to be used in the signature.- Returns:
-
an
IAlgorithmIdentifier
-
getSaltLength
BigInteger getSaltLength()Return the salt length parameter. This is aBigInteger
for API consistency reasons, but typical values will be small.- Returns:
- the salt length parameter
-
getTrailerField
BigInteger getTrailerField()Return the trailer field parameter. This is aBigInteger
for API consistency reasons, but typical values will be small.- Returns:
- the trailer field parameter
-