mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-17 21:29:54 +01:00
14 lines
307 B
Java
14 lines
307 B
Java
package org.briarproject.api.transport;
|
|
|
|
import java.io.InputStream;
|
|
|
|
/** Decrypts and authenticates data received over a connection. */
|
|
public interface ConnectionReader {
|
|
|
|
/**
|
|
* Returns an input stream from which the decrypted, authenticated data can
|
|
* be read.
|
|
*/
|
|
InputStream getInputStream();
|
|
}
|