Files
briar/briar-api/src/org/briarproject/api/crypto/PublicKey.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();
}