Removed erroneous @author tag from methods

This commit is contained in:
aum
2005-04-07 04:05:13 +00:00
committed by zzz
parent 348e845793
commit 03dfa913d1
4 changed files with 0 additions and 6 deletions

View File

@ -79,7 +79,6 @@ public class KeyGenerator {
/** Convert a PrivateKey to its corresponding PublicKey /** Convert a PrivateKey to its corresponding PublicKey
* @param a PrivateKey object * @param a PrivateKey object
* @return the corresponding PublicKey object * @return the corresponding PublicKey object
* @author aum
*/ */
public static PublicKey getPublicKey(PrivateKey priv) { public static PublicKey getPublicKey(PrivateKey priv) {
BigInteger a = new NativeBigInteger(priv.toByteArray()); BigInteger a = new NativeBigInteger(priv.toByteArray());
@ -117,7 +116,6 @@ public class KeyGenerator {
/** Convert a SigningPrivateKey to a SigningPublicKey /** Convert a SigningPrivateKey to a SigningPublicKey
* @param a SigningPrivateKey object * @param a SigningPrivateKey object
* @return a SigningPublicKey object * @return a SigningPublicKey object
* @author aum
*/ */
public static SigningPublicKey getSigningPublicKey(SigningPrivateKey priv) { public static SigningPublicKey getSigningPublicKey(SigningPrivateKey priv) {
BigInteger x = new NativeBigInteger(priv.toByteArray()); BigInteger x = new NativeBigInteger(priv.toByteArray());

View File

@ -35,7 +35,6 @@ public class PublicKey extends DataStructureImpl {
/** constructs from base64 /** constructs from base64
* @param a string of base64 data (the output of .toBase64() called * @param a string of base64 data (the output of .toBase64() called
* on a prior instance of PublicKey * on a prior instance of PublicKey
* @author aum
*/ */
public PublicKey(String base64Data) throws DataFormatException { public PublicKey(String base64Data) throws DataFormatException {
this(); this();

View File

@ -36,7 +36,6 @@ public class SigningPrivateKey extends DataStructureImpl {
/** constructs from base64 /** constructs from base64
* @param a string of base64 data (the output of .toBase64() called * @param a string of base64 data (the output of .toBase64() called
* on a prior instance of SigningPrivateKey * on a prior instance of SigningPrivateKey
* @author aum
*/ */
public SigningPrivateKey(String base64Data) throws DataFormatException { public SigningPrivateKey(String base64Data) throws DataFormatException {
this(); this();
@ -90,7 +89,6 @@ public class SigningPrivateKey extends DataStructureImpl {
/** converts this signing private key to its public equivalent /** converts this signing private key to its public equivalent
* @return a SigningPublicKey object derived from this private key * @return a SigningPublicKey object derived from this private key
* @author aum
*/ */
public SigningPublicKey toPublic() { public SigningPublicKey toPublic() {
return KeyGenerator.getSigningPublicKey(this); return KeyGenerator.getSigningPublicKey(this);

View File

@ -35,7 +35,6 @@ public class SigningPublicKey extends DataStructureImpl {
/** constructs from base64 /** constructs from base64
* @param a string of base64 data (the output of .toBase64() called * @param a string of base64 data (the output of .toBase64() called
* on a prior instance of SigningPublicKey * on a prior instance of SigningPublicKey
* @author aum
*/ */
public SigningPublicKey(String base64Data) throws DataFormatException { public SigningPublicKey(String base64Data) throws DataFormatException {
this(); this();