Package org.bouncycastle.openpgp
Interface PGPSignatureVerifier
-
public interface PGPSignatureVerifier
Base interface for thread safe signature verified objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getSignatureType()
Return the signature type.boolean
isVerified()
Return if the signature verifies or not.
-
-
-
Method Detail
-
getSignatureType
int getSignatureType()
Return the signature type.- Returns:
- signature type.
-
isVerified
boolean isVerified() throws PGPException
Return if the signature verifies or not.- Returns:
- true if verifies, false otherwise.
- Throws:
PGPException
- on signature processing failure.
-
-