From fb67ebb38d0edbd89090fa9b637cc560f7eefe1d Mon Sep 17 00:00:00 2001 From: zzz <zzz@mail.i2p> Date: Wed, 23 Oct 2019 12:17:21 +0000 Subject: [PATCH] Crypto: New KeyFactory interface --- core/java/src/net/i2p/crypto/KeyFactory.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 core/java/src/net/i2p/crypto/KeyFactory.java diff --git a/core/java/src/net/i2p/crypto/KeyFactory.java b/core/java/src/net/i2p/crypto/KeyFactory.java new file mode 100644 index 0000000000..f242827061 --- /dev/null +++ b/core/java/src/net/i2p/crypto/KeyFactory.java @@ -0,0 +1,12 @@ +package net.i2p.crypto; + +/** + * Make KeyPairs + * + * @since 0.9.44 + */ +public interface KeyFactory { + + public KeyPair getKeys(); + +} -- GitLab