Mercury-IM/domain/src/main/java/org/jivesoftware/smackx/ikey/IkeySignatureCreationMechan...

12 lines
207 B
Java

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