Class SignedMailValidator.ValidationResult
java.lang.Object
org.bouncycastle.mail.smime.validator.SignedMailValidator.ValidationResult
- Enclosing class:
SignedMailValidator
-
Method Summary
Modifier and TypeMethodDescriptionorg.bouncycastle.pkix.jcajce.PKIXCertPathReviewer
Returns a list of error messages of typeErrorBundle
.Returns a list of notification messages of typeErrorBundle
.boolean
boolean
-
Method Details
-
getErrors
Returns a list of error messages of typeErrorBundle
.- Returns:
- List of error messages
-
getNotifications
Returns a list of notification messages of typeErrorBundle
.- Returns:
- List of notification messages
-
getCertPathReview
public org.bouncycastle.pkix.jcajce.PKIXCertPathReviewer getCertPathReview()- Returns:
- the PKIXCertPathReviewer for the CertPath of this signature or null if an Exception occurred.
-
getCertPath
- Returns:
- the CertPath for this signature or null if an Exception occurred.
-
getUserProvidedCerts
- Returns:
- a List of Booleans that are true if the corresponding certificate in the CertPath was taken from the CertStore of the SMIME message
-
isVerifiedSignature
public boolean isVerifiedSignature()- Returns:
- true if the signature corresponds to the public key of the signer
-
isValidSignature
public boolean isValidSignature()- Returns:
- true if the signature is valid (ie. if it corresponds to the public key of the signer and the cert path for the signers certificate is also valid)
-