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

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

Removed erroneous @author tag from methods

parent 348e8457
No related branches found
No related tags found
No related merge requests found
......@@ -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());
......
......@@ -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();
......
......@@ -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);
......
......@@ -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();
......
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