]> WPIA git - gigi.git/blob - src/org/cacert/gigi/dbObjects/Verifyable.java
ba4dd0c58bca4904dc67f6d21212e906defe3365
[gigi.git] / src / org / cacert / gigi / dbObjects / Verifyable.java
1 package org.cacert.gigi.dbObjects;
2
3 import org.cacert.gigi.GigiApiException;
4
5 public interface Verifyable {
6
7     public void verify(String hash) throws GigiApiException;
8
9     public boolean isVerifyable(String hash) throws GigiApiException;
10
11 }