All Packages Class Hierarchy This Package Previous Next Index
Class IS.hi.logir.cryptonite.SignatureMatch
java.lang.Object
|
+----IS.hi.logir.cryptonite.SignatureMatch
- public class SignatureMatch
- extends Object
This class holds information about how well a signature
matches a particular object/key pair.
- Author:
- Logi Ragnarsson (logir@hi.is)
- See Also:
- Signature
-
keyExist
- True iff the key needed to validate the signture was found.
-
keyTrusted
- True iff the key needed to validate the signture is trusted.
-
signatureMatches
- True iff signature matches the specified object.
-
SignatureMatch(boolean, boolean, boolean)
- Create a new SignatureMatch object.
-
isGood()
- Return true iff the signature was created with a known
trusted key and mathces the object it was compared to.
keyExist
public boolean keyExist
- True iff the key needed to validate the signture was found.
keyTrusted
public boolean keyTrusted
- True iff the key needed to validate the signture is trusted.
signatureMatches
public boolean signatureMatches
- True iff signature matches the specified object.
SignatureMatch
public SignatureMatch(boolean keyExist,
boolean keyTrusted,
boolean signatureMatches)
- Create a new SignatureMatch object.
isGood
public boolean isGood()
- Return true iff the signature was created with a known
trusted key and mathces the object it was compared to.
All Packages Class Hierarchy This Package Previous Next Index