mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
9 lines
234 B
Java
9 lines
234 B
Java
package org.briarproject.api.keyagreement;
|
|
|
|
/** Manages tasks for conducting key agreements with remote peers. */
|
|
public interface KeyAgreementTaskFactory {
|
|
|
|
/** Gets the current key agreement task. */
|
|
KeyAgreementTask getTask();
|
|
}
|