1 package ca.uhn.hl7v2.hoh.sign;
2
3
4 public interface ISigner {
5
6 public String sign(byte[] theBytes) throws SignatureFailureException;
7
8 public void verify(byte[] theBytes, String theSignature) throws SignatureVerificationException, SignatureFailureException;
9
10
11 }