I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 7c73e594 authored by aum's avatar aum Committed by zzz
Browse files

Fixed more javadoc errors

parent 03dfa913
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,7 @@ public class KeyGenerator {
}
/** Convert a PrivateKey to its corresponding PublicKey
* @param a PrivateKey object
* @param priv PrivateKey object
* @return the corresponding PublicKey object
*/
public static PublicKey getPublicKey(PrivateKey priv) {
......@@ -114,7 +114,7 @@ public class KeyGenerator {
}
/** Convert a SigningPrivateKey to a SigningPublicKey
* @param a SigningPrivateKey object
* @param priv a SigningPrivateKey object
* @return a SigningPublicKey object
*/
public static SigningPublicKey getSigningPublicKey(SigningPrivateKey priv) {
......
......@@ -34,9 +34,8 @@ public class PrivateKey extends DataStructureImpl {
}
/** constructs from base64
* @param a string of base64 data (the output of .toBase64() called
* @param base64Data a string of base64 data (the output of .toBase64() called
* on a prior instance of PrivateKey
* @author aum
*/
public PrivateKey(String base64Data) throws DataFormatException {
this();
......
......@@ -33,7 +33,7 @@ public class PublicKey extends DataStructureImpl {
}
/** constructs from base64
* @param a string of base64 data (the output of .toBase64() called
* @param base64Data a string of base64 data (the output of .toBase64() called
* on a prior instance of PublicKey
*/
public PublicKey(String base64Data) throws DataFormatException {
......
......@@ -34,7 +34,7 @@ public class SigningPrivateKey extends DataStructureImpl {
public SigningPrivateKey(byte data[]) { setData(data); }
/** constructs from base64
* @param a string of base64 data (the output of .toBase64() called
* @param base64Data a string of base64 data (the output of .toBase64() called
* on a prior instance of SigningPrivateKey
*/
public SigningPrivateKey(String base64Data) throws DataFormatException {
......
......@@ -33,7 +33,7 @@ public class SigningPublicKey extends DataStructureImpl {
public SigningPublicKey(byte data[]) { setData(data); }
/** constructs from base64
* @param a string of base64 data (the output of .toBase64() called
* @param base64Data a string of base64 data (the output of .toBase64() called
* on a prior instance of SigningPublicKey
*/
public SigningPublicKey(String base64Data) throws DataFormatException {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment