mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
9 lines
208 B
Java
9 lines
208 B
Java
package org.briarproject.api.crypto;
|
|
|
|
/** The public half of a public/private {@link KeyPair}. */
|
|
public interface PublicKey {
|
|
|
|
/** Returns the encoded representation of this key. */
|
|
byte[] getEncoded();
|
|
}
|