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