Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ISigner |
|
| 1.0;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 | } |