Fixed more javadoc errors

This commit is contained in:
aum
2005-04-07 04:26:55 +00:00
committed by zzz
parent 03dfa913d1
commit 7c73e59482
5 changed files with 6 additions and 7 deletions

View File

@ -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) {

View File

@ -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();

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {