ca.uhn.hl7v2.hoh.sign.ISigner Maven / Gradle / Ivy
package ca.uhn.hl7v2.hoh.sign;
public interface ISigner {
public String sign(byte[] theBytes) throws SignatureFailureException;
public void verify(byte[] theBytes, String theSignature) throws SignatureVerificationException, SignatureFailureException;
}