mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
9 lines
156 B
Java
9 lines
156 B
Java
package org.briarproject.api.keyagreement;
|
|
|
|
import java.io.IOException;
|
|
|
|
public interface PayloadParser {
|
|
|
|
Payload parse(byte[] raw) throws IOException;
|
|
}
|