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

Variable Index

 o keyExist
True iff the key needed to validate the signture was found.
 o keyTrusted
True iff the key needed to validate the signture is trusted.
 o signatureMatches
True iff signature matches the specified object.

Constructor Index

 o SignatureMatch(boolean, boolean, boolean)
Create a new SignatureMatch object.

Method Index

 o isGood()
Return true iff the signature was created with a known trusted key and mathces the object it was compared to.

Variables

 o keyExist
 public boolean keyExist
True iff the key needed to validate the signture was found.

 o keyTrusted
 public boolean keyTrusted
True iff the key needed to validate the signture is trusted.

 o signatureMatches
 public boolean signatureMatches
True iff signature matches the specified object.

Constructors

 o SignatureMatch
 public SignatureMatch(boolean keyExist,
                       boolean keyTrusted,
                       boolean signatureMatches)
Create a new SignatureMatch object.

Methods

 o 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