forked from I2P_Developers/i2p.i2p
Fixed more javadoc errors
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user