mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
10 lines
206 B
Java
10 lines
206 B
Java
package org.briarproject.api;
|
|
|
|
public interface AuthorFactory {
|
|
|
|
Author createAuthor(String name, byte[] publicKey);
|
|
|
|
LocalAuthor createLocalAuthor(String name, byte[] publicKey,
|
|
byte[] privateKey);
|
|
}
|