mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-16 12:49:55 +01:00
Javadocs.
This commit is contained in:
@@ -12,9 +12,9 @@ public interface ConnectionWriter {
|
|||||||
OutputStream getOutputStream();
|
OutputStream getOutputStream();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the number of encrypted and authenticated bytes that can be
|
* Returns the number of bytes that can be written to this writer without
|
||||||
* written without writing more than the given number of bytes, including
|
* outputting more than the given number of bytes, including encryption and
|
||||||
* encryption and authentication overhead.
|
* authentication overhead.
|
||||||
*/
|
*/
|
||||||
long getCapacity(long capacity);
|
long getCapacity(long capacity);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,9 +13,8 @@ interface ConnectionEncrypter {
|
|||||||
void writeMac(byte[] mac) throws IOException;
|
void writeMac(byte[] mac) throws IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the number of encrypted bytes that can be written without
|
* Returns the number of bytes that can be encrypted without outputting
|
||||||
* writing more than the given number of bytes, including encryption
|
* more than the given number of bytes, including encryption overhead.
|
||||||
* overhead.
|
|
||||||
*/
|
*/
|
||||||
long getCapacity(long capacity);
|
long getCapacity(long capacity);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user