Crypto: New KeyFactory interface

This commit is contained in:
zzz
2019-10-23 12:17:21 +00:00
parent a9d4798bfe
commit fb67ebb38d

View File

@ -0,0 +1,12 @@
package net.i2p.crypto;
/**
* Make KeyPairs
*
* @since 0.9.44
*/
public interface KeyFactory {
public KeyPair getKeys();
}