Coverage Report - ca.uhn.hl7v2.hoh.sign.ISigner
 
Classes in this File Line Coverage Branch Coverage Complexity
ISigner
N/A
N/A
1
 
 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  
 }