mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
Changed the root package from net.sf.briar to org.briarproject.
This commit is contained in:
11
briar-api/src/org/briarproject/api/crypto/KeyParser.java
Normal file
11
briar-api/src/org/briarproject/api/crypto/KeyParser.java
Normal file
@@ -0,0 +1,11 @@
|
||||
package org.briarproject.api.crypto;
|
||||
|
||||
import java.security.GeneralSecurityException;
|
||||
|
||||
public interface KeyParser {
|
||||
|
||||
PublicKey parsePublicKey(byte[] encodedKey) throws GeneralSecurityException;
|
||||
|
||||
PrivateKey parsePrivateKey(byte[] encodedKey)
|
||||
throws GeneralSecurityException;
|
||||
}
|
||||
Reference in New Issue
Block a user