X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fde%2Ftodesbaum%2Futil%2Ffreenet%2Ffcp2%2FGenerateSSK.java;fp=src%2Fde%2Ftodesbaum%2Futil%2Ffreenet%2Ffcp2%2FGenerateSSK.java;h=cfeaa7408eab7e089182e10fffcb6f905eeb5016;hb=6f1a8216cfba28add0ef365b46a08d16d4eb87fe;hp=0000000000000000000000000000000000000000;hpb=10df11c06704254df61e030dc4a772204759560d;p=jSite.git diff --git a/src/de/todesbaum/util/freenet/fcp2/GenerateSSK.java b/src/de/todesbaum/util/freenet/fcp2/GenerateSSK.java new file mode 100644 index 0000000..cfeaa74 --- /dev/null +++ b/src/de/todesbaum/util/freenet/fcp2/GenerateSSK.java @@ -0,0 +1,39 @@ +/* + * todesbaum-lib - + * Copyright (C) 2006 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 de.todesbaum.util.freenet.fcp2; + +/** + * Implementation of the GenerateSSK command. + *

+ * The node can answer with the following messages: SSKKeypair. + * + * @author David Roden <droden@gmail.com> + * @version $Id: GenerateSSK.java 413 2006-03-29 12:22:31Z bombe $ + */ +public class GenerateSSK extends Command { + + /** + * Creates a new GenerateSSK request. + */ + public GenerateSSK() { + super("GenerateSSK", null); + } + +}