diff --git a/core/java/src/net/i2p/crypto/KeyGenerator.java b/core/java/src/net/i2p/crypto/KeyGenerator.java
index 5d0ecbfd6af118e30903df23ee119ee0d7da1ca4..d480cc5a12b2da9d28cc7fb9c7532d575d003085 100644
--- a/core/java/src/net/i2p/crypto/KeyGenerator.java
+++ b/core/java/src/net/i2p/crypto/KeyGenerator.java
@@ -79,7 +79,6 @@ public class KeyGenerator {
     /** Convert a PrivateKey to its corresponding PublicKey
      * @param a PrivateKey object
      * @return the corresponding PublicKey object
-     * @author aum
      */
     public static PublicKey getPublicKey(PrivateKey priv) {
         BigInteger a = new NativeBigInteger(priv.toByteArray());
@@ -117,7 +116,6 @@ public class KeyGenerator {
     /** Convert a SigningPrivateKey to a SigningPublicKey
      * @param a SigningPrivateKey object
      * @return a SigningPublicKey object
-     * @author aum
      */
     public static SigningPublicKey getSigningPublicKey(SigningPrivateKey priv) {
         BigInteger x = new NativeBigInteger(priv.toByteArray());
diff --git a/core/java/src/net/i2p/data/PublicKey.java b/core/java/src/net/i2p/data/PublicKey.java
index 8c62ad7f5a86a8a639f87cc71a32784b1f8ae255..63270ff2b80feca6dac9fb26c2bcf53868457a5a 100644
--- a/core/java/src/net/i2p/data/PublicKey.java
+++ b/core/java/src/net/i2p/data/PublicKey.java
@@ -35,7 +35,6 @@ public class PublicKey extends DataStructureImpl {
     /** constructs from base64
      * @param a string of base64 data (the output of .toBase64() called
      * on a prior instance of PublicKey
-     * @author aum
      */
     public PublicKey(String base64Data)  throws DataFormatException {
         this();
diff --git a/core/java/src/net/i2p/data/SigningPrivateKey.java b/core/java/src/net/i2p/data/SigningPrivateKey.java
index 9e0a80c58daa93a790de36ee0207c2af1cc7cdaf..7c6d9b0632c709b676339542b2f41d20d7a9959e 100644
--- a/core/java/src/net/i2p/data/SigningPrivateKey.java
+++ b/core/java/src/net/i2p/data/SigningPrivateKey.java
@@ -36,7 +36,6 @@ public class SigningPrivateKey extends DataStructureImpl {
     /** constructs from base64
      * @param a string of base64 data (the output of .toBase64() called
      * on a prior instance of SigningPrivateKey
-     * @author aum
      */
     public SigningPrivateKey(String base64Data)  throws DataFormatException {
         this();
@@ -90,7 +89,6 @@ public class SigningPrivateKey extends DataStructureImpl {
 
     /** converts this signing private key to its public equivalent
      * @return a SigningPublicKey object derived from this private key
-     * @author aum
      */
     public SigningPublicKey toPublic() {
         return KeyGenerator.getSigningPublicKey(this);
diff --git a/core/java/src/net/i2p/data/SigningPublicKey.java b/core/java/src/net/i2p/data/SigningPublicKey.java
index 72a90686809e80e76310e1ad99c724434d1963f6..cd7810b6d166efbb7e458b73eed87ebb155c3753 100644
--- a/core/java/src/net/i2p/data/SigningPublicKey.java
+++ b/core/java/src/net/i2p/data/SigningPublicKey.java
@@ -35,7 +35,6 @@ public class SigningPublicKey extends DataStructureImpl {
     /** constructs from base64
      * @param a string of base64 data (the output of .toBase64() called
      * on a prior instance of SigningPublicKey
-     * @author aum
      */
     public SigningPublicKey(String base64Data)  throws DataFormatException {
         this();