We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbffd6c commit 5905219Copy full SHA for 5905219
2 files changed
src/net/sharksystem/crypto/BasicCryptoSettings.java
@@ -41,13 +41,4 @@ public interface BasicCryptoSettings {
41
String getSymmetricKeyType();
42
43
int getSymmetricKeyLen();
44
-
45
- /**
46
- *
47
- * @param peerID
48
- * @return true if peerID is owners' id.
49
- */
50
- boolean isOwner(CharSequence peerID);
51
52
- CharSequence getOwner();
53
}
src/net/sharksystem/crypto/BasicKeyStore.java
@@ -13,4 +13,13 @@ public interface BasicKeyStore extends BasicCryptoSettings {
13
* @throws ASAPSecurityException if key cannot be found
14
*/
15
PublicKey getPublicKey(CharSequence subjectID) throws ASAPSecurityException;
16
+
17
+ /**
18
+ *
19
+ * @param peerID
20
+ * @return true if peerID is owners' id.
21
+ */
22
+ boolean isOwner(CharSequence peerID);
23
24
+ CharSequence getOwner();
25
0 commit comments