Package org.xwiki.crypto.signer.param
Interface CMSSignedDataVerified
-
public interface CMSSignedDataVerified
Signed Data.- Since:
- 6.0M1
- Version:
- $Id: 8a08858704c353b7afaf734e10d811daabe93e34 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<CertifiedPublicKey>
getCertificates()
byte[]
getContent()
String
getContentType()
Collection<CMSSignerVerifiedInformation>
getSignatures()
boolean
isVerified()
-
-
-
Method Detail
-
getSignatures
Collection<CMSSignerVerifiedInformation> getSignatures()
- Returns:
- the collection of signer information.
-
getCertificates
Collection<CertifiedPublicKey> getCertificates()
- Returns:
- the collection of certificates.
-
getContentType
String getContentType()
- Returns:
- the type of the signed data.
-
getContent
byte[] getContent()
- Returns:
- the data.
-
isVerified
boolean isVerified()
- Returns:
- true if all signatures are verified.
-
-