mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-20 06:39:54 +01:00
Add longer explanation of 'verified' flag.
This commit is contained in:
@@ -37,7 +37,9 @@ public interface ContactManager {
|
|||||||
* @param timestamp The timestamp for deriving rotation mode transport
|
* @param timestamp The timestamp for deriving rotation mode transport
|
||||||
* keys from the root key
|
* keys from the root key
|
||||||
* @param alice True if the local party is Alice
|
* @param alice True if the local party is Alice
|
||||||
* @param verified True if the contact's identity has been verified
|
* @param verified True if the contact's identity has been verified, which
|
||||||
|
* is true if the contact was added in person or false if the contact was
|
||||||
|
* introduced or added remotely
|
||||||
* @param active True if the rotation mode transport keys can be used for
|
* @param active True if the rotation mode transport keys can be used for
|
||||||
* outgoing streams
|
* outgoing streams
|
||||||
*/
|
*/
|
||||||
@@ -55,7 +57,9 @@ public interface ContactManager {
|
|||||||
* @param timestamp The timestamp for deriving rotation mode transport
|
* @param timestamp The timestamp for deriving rotation mode transport
|
||||||
* keys from the root key
|
* keys from the root key
|
||||||
* @param alice True if the local party is Alice
|
* @param alice True if the local party is Alice
|
||||||
* @param verified True if the contact's identity has been verified
|
* @param verified True if the contact's identity has been verified, which
|
||||||
|
* is true if the contact was added in person or false if the contact was
|
||||||
|
* introduced or added remotely
|
||||||
* @param active True if the rotation mode transport keys can be used for
|
* @param active True if the rotation mode transport keys can be used for
|
||||||
* outgoing streams
|
* outgoing streams
|
||||||
* @throws GeneralSecurityException If the pending contact's handshake
|
* @throws GeneralSecurityException If the pending contact's handshake
|
||||||
@@ -70,7 +74,9 @@ public interface ContactManager {
|
|||||||
* Stores a contact associated with the given local and remote pseudonyms
|
* Stores a contact associated with the given local and remote pseudonyms
|
||||||
* and returns an ID for the contact.
|
* and returns an ID for the contact.
|
||||||
*
|
*
|
||||||
* @param verified True if the contact's identity has been verified
|
* @param verified True if the contact's identity has been verified, which
|
||||||
|
* is true if the contact was added in person or false if the contact was
|
||||||
|
* introduced or added remotely
|
||||||
*/
|
*/
|
||||||
ContactId addContact(Transaction txn, Author remote, AuthorId local,
|
ContactId addContact(Transaction txn, Author remote, AuthorId local,
|
||||||
boolean verified) throws DbException;
|
boolean verified) throws DbException;
|
||||||
@@ -84,7 +90,9 @@ public interface ContactManager {
|
|||||||
* @param timestamp The timestamp for deriving rotation mode transport
|
* @param timestamp The timestamp for deriving rotation mode transport
|
||||||
* keys from the root key
|
* keys from the root key
|
||||||
* @param alice True if the local party is Alice
|
* @param alice True if the local party is Alice
|
||||||
* @param verified True if the contact's identity has been verified
|
* @param verified True if the contact's identity has been verified, which
|
||||||
|
* is true if the contact was added in person or false if the contact was
|
||||||
|
* introduced or added remotely
|
||||||
* @param active True if the rotation mode transport keys can be used for
|
* @param active True if the rotation mode transport keys can be used for
|
||||||
* outgoing streams
|
* outgoing streams
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user