Files
briar/briar-api/src/org/briarproject/api/transport/ConnectionReader.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();
}