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