package at.gv.egiz.moazs.verify; @FunctionalInterface public interface SignatureVerifier { /** * Verifies the signature of a signed XML document. * @param signedXMLdocument * @return true if the signature is valid; false if there is no signature, if the signature is invalid, * or if an exception occured. */ boolean verify(byte[] signedXMLdocument); }