Interface IRSASSAPSSParams
-
- All Superinterfaces:
IASN1Encodable
- All Known Implementing Classes:
RSASSAPSSParamsBC
public interface IRSASSAPSSParams extends IASN1Encodable
Wrapper interface for BouncyCastle's representation of RSASSA-PSS parameters in ASN.1.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IAlgorithmIdentifiergetHashAlgorithm()Return theIAlgorithmIdentifierdescribing the digest algorithm to be used in the signature.IAlgorithmIdentifiergetMaskGenAlgorithm()Return theIAlgorithmIdentifierdescribing the mask generation function to be used in the signature.java.math.BigIntegergetSaltLength()Return the salt length parameter.java.math.BigIntegergetTrailerField()Return the trailer field parameter.-
Methods inherited from interface com.itextpdf.commons.bouncycastle.asn1.IASN1Encodable
isNull, toASN1Primitive
-
-
-
-
Method Detail
-
getHashAlgorithm
IAlgorithmIdentifier getHashAlgorithm()
Return theIAlgorithmIdentifierdescribing the digest algorithm to be used in the signature.- Returns:
- an
IAlgorithmIdentifier
-
getMaskGenAlgorithm
IAlgorithmIdentifier getMaskGenAlgorithm()
Return theIAlgorithmIdentifierdescribing the mask generation function to be used in the signature.- Returns:
- an
IAlgorithmIdentifier
-
getSaltLength
java.math.BigInteger getSaltLength()
Return the salt length parameter. This is aBigIntegerfor API consistency reasons, but typical values will be small.- Returns:
- the salt length parameter
-
getTrailerField
java.math.BigInteger getTrailerField()
Return the trailer field parameter. This is aBigIntegerfor API consistency reasons, but typical values will be small.- Returns:
- the trailer field parameter
-
-