All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.uhn.hl7v2.hoh.sign.ISigner Maven / Gradle / Ivy

There is a newer version: 2.5.1
Show newest version
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;
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy