Remove @author javadoc tag

This commit is contained in:
Marko Zivanovic
2015-03-10 21:33:23 +01:00
parent 667be6227a
commit 00e3b25725
9 changed files with 7 additions and 26 deletions
@@ -30,9 +30,7 @@ import java.nio.charset.StandardCharsets;
import java.util.List;
/**
* Implementation of the obfuscate command.
*
* @author Marko Zivanovic <marko@zivanovic.in.rs>
* Implementation of the de-obfuscate command.
*/
@Parameters(commandDescription = "De-obfuscate sensitive data")
public class DeObfuscateCommand implements Runnable {
@@ -24,15 +24,12 @@
package rs.in.zivanovic.obfuscator;
import com.beust.jcommander.JCommander;
import com.beust.jcommander.ParameterException;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
/**
* Main entry point.
*
* @author Marko Zivanovic <marko@zivanovic.in.rs>
*/
public class Main {
@@ -31,8 +31,6 @@ import java.util.List;
/**
* Implementation of the obfuscate command.
*
* @author Marko Zivanovic <marko@zivanovic.in.rs>
*/
@Parameters(commandDescription = "Obfuscate sensitive data")
public class ObfuscateCommand implements Runnable {
@@ -33,8 +33,6 @@ import rs.in.zivanovic.obfuscator.impl.V1ObfuscatorImpl;
*
* This method is useful for protecting potentially sensitive data from casual onlookers. It is NOT secure against
* attackers with access to source code or live systems.
*
* @author Marko Zivanovic <marko@zivanovic.in.rs>
*/
public final class JPasswordObfuscator {
@@ -27,8 +27,6 @@ import org.bouncycastle.util.encoders.Base64;
/**
* Container for obfuscated data.
*
* @author Marko Zivanovic <marko@zivanovic.in.rs>
*/
public class ObfuscatedData {
@@ -25,8 +25,6 @@ package rs.in.zivanovic.obfuscator.impl;
/**
* Obfuscator/de-obfuscator interface.
*
* @author Marko Zivanovic <marko@zivanovic.in.rs>
*/
public interface Obfuscator {
@@ -31,8 +31,6 @@ import javax.crypto.spec.PBEKeySpec;
/**
* Password Based Encryption (PBE) based obfuscator. Use as a base class for further specializations.
*
* @author Marko Zivanovic <marko@zivanovic.in.rs>
*/
public class PBEObfuscatorImpl implements Obfuscator {
@@ -29,8 +29,6 @@ import org.bouncycastle.jce.provider.BouncyCastleProvider;
/**
* PBE-based obfuscator using <em>PBEWithSHA256And128BitAES</em> algorithm with 16,000 rounds, 8 bytes of randomly
* generated salt and BouncyCastle as crypto provider.
*
* @author Marko Zivanovic <marko@zivanovic.in.rs>
*/
public class V1ObfuscatorImpl extends PBEObfuscatorImpl {
@@ -30,8 +30,6 @@ import org.junit.Test;
/**
* Obfuscator unit tests.
*
* @author Marko Zivanovic <marko@zivanovic.in.rs>
*/
public class JPasswordObfuscatorTest {