X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Ffcp%2FDSAGroup.java;h=4674e6645907590536353fcee9fb9b025a333846;hb=a655177a4605236e866ac7e0ce32f7cb5289cbc4;hp=e7031c0a76907bc1bfffd56cd3f043923e5194bc;hpb=64c2c9bd494f3ea9d1ae84f8d86827dea025bee6;p=jFCPlib.git diff --git a/src/net/pterodactylus/fcp/DSAGroup.java b/src/net/pterodactylus/fcp/DSAGroup.java index e7031c0..4674e66 100644 --- a/src/net/pterodactylus/fcp/DSAGroup.java +++ b/src/net/pterodactylus/fcp/DSAGroup.java @@ -1,6 +1,5 @@ /* - * jSite2 - DSAGroup.java - - * Copyright © 2008 David Roden + * jFCPlib - DSAGroup.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 @@ -24,7 +23,7 @@ import java.security.interfaces.DSAParams; /** * Container for the DSA group of a peer. A DSA group consists of a base (called * “g”), a prime (called “p”) and a subprime (called “q”). - * + * * @see DSAParams * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ @@ -42,7 +41,7 @@ public class DSAGroup { /** * Creates a new DSA group with the given base (“g”), prime (“p”), and * subprime (“q”). - * + * * @param base * The base of the DSA group * @param prime @@ -58,7 +57,7 @@ public class DSAGroup { /** * Returns the base (“g”) of the DSA group. - * + * * @return The base of the DSA group */ public String getBase() { @@ -67,7 +66,7 @@ public class DSAGroup { /** * Returns the prime (“p”) of the DSA group. - * + * * @return The prime of the DSA group */ public String getPrime() { @@ -76,11 +75,11 @@ public class DSAGroup { /** * Returns the subprime (“q”) of the DSA group. - * + * * @return The subprime of the DSA group */ public String getSubprime() { return subprime; } -} \ No newline at end of file +}