package org.jivesoftware.smackx.ikey; import java.io.IOException; public interface IkeySignatureCreationMechanism { byte[] createSignature(byte[] data) throws IOException; IkeyType getType(); }