Uses of Interface
com.itextpdf.signatures.IExternalDigest
-
Packages that use IExternalDigest Package Description com.itextpdf.signatures -
-
Uses of IExternalDigest in com.itextpdf.signatures
Classes in com.itextpdf.signatures that implement IExternalDigest Modifier and Type Class Description class
BouncyCastleDigest
Implementation for digests accessed directly from the BouncyCastle library bypassing any provider definition.class
ProviderDigest
This class will return theMessageDigest
associated with a certain hashing algorithm returned by the specified provider.Fields in com.itextpdf.signatures declared as IExternalDigest Modifier and Type Field Description private IExternalDigest
PdfPadesSigner. externalDigest
private IExternalDigest
PdfTwoPhaseSigner. externalDigest
private IExternalDigest
PdfPKCS7. interfaceDigest
Methods in com.itextpdf.signatures with parameters of type IExternalDigest Modifier and Type Method Description (package private) static java.security.MessageDigest
SignUtils. getMessageDigest(java.lang.String hashAlgorithm, IExternalDigest externalDigest)
PdfPadesSigner
PdfPadesSigner. setExternalDigest(IExternalDigest externalDigest)
SetIExternalDigest
to be used for main signing operation.PdfTwoPhaseSigner
PdfTwoPhaseSigner. setExternalDigest(IExternalDigest externalDigest)
Use the external digest to inject specific digest implementationsvoid
PdfSigner. signDetached(IExternalDigest externalDigest, IExternalSignature externalSignature, java.security.cert.Certificate[] chain, java.util.Collection<ICrlClient> crlList, IOcspClient ocspClient, ITSAClient tsaClient, int estimatedSize, PdfSigner.CryptoStandard sigtype)
Signs the document using the detached mode, CMS or CAdES equivalent.void
PdfSigner. signDetached(IExternalDigest externalDigest, IExternalSignature externalSignature, java.security.cert.Certificate[] chain, java.util.Collection<ICrlClient> crlList, IOcspClient ocspClient, ITSAClient tsaClient, int estimatedSize, PdfSigner.CryptoStandard sigtype, ISignaturePolicyIdentifier signaturePolicy)
Signs the document using the detached mode, CMS or CAdES equivalent.void
PdfSigner. signDetached(IExternalDigest externalDigest, IExternalSignature externalSignature, java.security.cert.Certificate[] chain, java.util.Collection<ICrlClient> crlList, IOcspClient ocspClient, ITSAClient tsaClient, int estimatedSize, PdfSigner.CryptoStandard sigtype, SignaturePolicyInfo signaturePolicy)
Signs the document using the detached mode, CMS or CAdES equivalent.Constructors in com.itextpdf.signatures with parameters of type IExternalDigest Constructor Description PdfPKCS7(java.security.PrivateKey privKey, java.security.cert.Certificate[] certChain, java.lang.String hashAlgorithm, java.lang.String provider, IExternalDigest interfaceDigest, boolean hasEncapContent)
Assembles all the elements needed to create a signature, except for the data.
-