package at.gv.egiz.pdfas.api.timestamp; /** * Interface for timestamper implementations/handlers * * @author dferbas * */ public interface TimeStamper { /** * Implement timestamp in this method. * @param b64SignatureValue signature value, base64 encoded * @return timestamp to be embedded in egiz dict. base64 encoded */ public String applyTimeStamp(String b64SignatureValue); }