Package org.xwiki.crypto.signer.param
Interface CMSSignerVerifiedInformation
-
- All Superinterfaces:
CMSSignerInfo
public interface CMSSignerVerifiedInformation extends CMSSignerInfo
Signer information verifier results.- Since:
- 6.0M1
- Version:
- $Id: ae6ddf183aa42ef869fc1e5e7fb524dc24d96f18 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<CertifiedPublicKey>
getCertificateChain()
boolean
isVerified()
-
Methods inherited from interface org.xwiki.crypto.signer.param.CMSSignerInfo
getIssuer, getSerialNumber, getSubjectKeyIdentifier
-
-
-
-
Method Detail
-
isVerified
boolean isVerified()
- Returns:
- true if the signature is verified against the data.
-
getCertificateChain
Collection<CertifiedPublicKey> getCertificateChain()
- Returns:
- the certificate chain of this signature, from the signer to the root.
-
-