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 IAlgorithmIdentifier
getHashAlgorithm()
Return theIAlgorithmIdentifier
describing the digest algorithm to be used in the signature.IAlgorithmIdentifier
getMaskGenAlgorithm()
Return theIAlgorithmIdentifier
describing the mask generation function to be used in the signature.java.math.BigInteger
getSaltLength()
Return the salt length parameter.java.math.BigInteger
getTrailerField()
Return the trailer field parameter.-
Methods inherited from interface com.itextpdf.commons.bouncycastle.asn1.IASN1Encodable
isNull, toASN1Primitive
-
-
-
-
Method Detail
-
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
java.math.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
java.math.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
-
-