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