Move source and test files to maven’s favourite locations.
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / FcpKeyPair.java
diff --git a/src/main/java/net/pterodactylus/fcp/FcpKeyPair.java b/src/main/java/net/pterodactylus/fcp/FcpKeyPair.java
new file mode 100644 (file)
index 0000000..4b9ba05
--- /dev/null
@@ -0,0 +1,65 @@
+/*
+ * jFCPlib - FcpKeyPair.java - Copyright © 2008 David Roden
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+package net.pterodactylus.fcp;
+
+/**
+ * Container for an SSK keypair.
+ *
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
+ */
+public class FcpKeyPair {
+
+       /** The public key. */
+       private final String publicKey;
+
+       /** The private key. */
+       private final String privateKey;
+
+       /**
+        * Creates a new keypair from the given keys.
+        *
+        * @param publicKey
+        *            The public key
+        * @param privateKey
+        *            The private key
+        */
+       public FcpKeyPair(String publicKey, String privateKey) {
+               this.publicKey = publicKey;
+               this.privateKey = privateKey;
+       }
+
+       /**
+        * Returns the public key of this keypair.
+        *
+        * @return The public key
+        */
+       public String getPublicKey() {
+               return publicKey;
+       }
+
+       /**
+        * Returns the private key of this keypair.
+        *
+        * @return The private key
+        */
+       public String getPrivateKey() {
+               return privateKey;
+       }
+
+}