Skip to content

Commit

Permalink
Removed author tags
Browse files Browse the repository at this point in the history
  • Loading branch information
ic0ns committed Feb 9, 2018
1 parent 2d6c886 commit c2826a3
Show file tree
Hide file tree
Showing 51 changed files with 0 additions and 205 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package de.rub.nds.tlsattacker.attacks.bruteforce;

/**
*
* @author Robert Merget <[email protected]>
*/
public enum GuessProviderType {
INCREMENTING,
WORDLIST
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@
import java.io.IOException;
import org.apache.logging.log4j.LogManager;

/**
*
* @author Robert Merget <[email protected]>
*/
public class ConnectivityChecker {

private final Connection connection;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package de.rub.nds.tlsattacker.attacks.constants;

/**
*
* @author Robert Merget <[email protected]>
*/
public enum DrownVulnerabilityType {
FULL,
SSL2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package de.rub.nds.tlsattacker.attacks.exception;

/**
*
* @author Robert Merget <[email protected]>
*/
public class PaddingOracleUnstableException extends RuntimeException {

public PaddingOracleUnstableException(String string) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package de.rub.nds.tlsattacker.attacks.exception;

/**
*
* @author Robert Merget <[email protected]>
*/
public class WordlistNotFoundException extends RuntimeException {

public WordlistNotFoundException() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package de.rub.nds.tlsattacker.attacks.util.response;

/**
*
* @author Robert Merget <[email protected]>
*/
public enum EqualityError {
NONE,
SOCKET_EXCEPTION,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package de.rub.nds.tlsattacker.attacks.util.response;

/**
*
* @author Robert Merget <[email protected]>
*/
public class EqualityErrorTranslator {

private EqualityErrorTranslator() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@
import org.junit.Before;
import org.junit.Test;

/**
*
* @author Robert Merget <[email protected]>
*/
public class IncrementingGuessProviderTest {

public IncrementingGuessProviderTest() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package de.rub.nds.tlsattacker.core.constants;

/**
*
* @author Robert Merget <[email protected]>
*/
public enum FiniteFieldGroups {
FFDHE2048(new byte[] { 01, 00 }),
FFDHE3072(new byte[] { 01, 01 }),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@
import de.rub.nds.modifiablevariable.integer.ModifiableInteger;
import java.math.BigInteger;

/**
*
* @author Robert Merget <[email protected]>
*/
public class RecordCryptoComputations {

private ModifiableByteArray cipherKey;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package de.rub.nds.tlsattacker.core.record.cipher.cryptohelper;

/**
*
* @author Robert Merget <[email protected]>
*/
public class DecryptionRequest {

private final byte[] additionalAuthenticatedData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package de.rub.nds.tlsattacker.core.record.cipher.cryptohelper;

/**
*
* @author Robert Merget <[email protected]>
*/
public class DecryptionResult {

private final byte[] initialisationVector;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@
import org.junit.Before;
import org.junit.Test;

/**
*
* @author Robert Merget <[email protected]>
*/
public class HttpsResponseParserTest {

private HttpsResponseParser parser;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class CertificateVerifyMessageTest {

CertificateVerifyMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class ChangeCipherSpecMessageTest {
ChangeCipherSpecMessage message;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class ClientHelloMessageTest {

ClientHelloMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class DHEServerKeyExchangeMessageTest {

DHEServerKeyExchangeMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class ECDHEServerKeyExchangeMessageTest {

ECDHEServerKeyExchangeMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class EncryptedExtensionsMessageTest {

EncryptedExtensionsMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class FinishedMessageTest {

FinishedMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class HeartbeatMessageTest {

HeartbeatMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class HelloRetryRequestMessageTest {

HelloRetryRequestMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class HelloVerifyRequestMessageTest {

HelloVerifyRequestMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class NewSessionTicketMessageTest {

NewSessionTicketMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class PskClientKeyExchangeMessageTest {

PskClientKeyExchangeMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class PskDhClientKeyExchangeMessageTest {

PskDhClientKeyExchangeMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class PskDheServerKeyExchangeMessageTest {

PskDheServerKeyExchangeMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class PskEcDhClientKeyExchangeMessageTest {

PskEcDhClientKeyExchangeMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class PskEcDheServerKeyExchangeMessageTest {

PskEcDheServerKeyExchangeMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus
*/
public class PskRsaClientKeyExchangeMessageTest {

PskRsaClientKeyExchangeMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Before;
import org.junit.Test;

/**
*
* @author Pierre Tilhaus
*/
public class PskServerKeyExchangeMessageTest {

PskServerKeyExchangeMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus <[email protected]>
*/
public class SSL2ClientHelloMessageTest {

SSL2ClientHelloMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus <[email protected]>
*/
public class SSL2ServerHelloMessageTest {

SSL2ServerHelloMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus <[email protected]>
*/
public class ServerHelloMessageTest {

ServerHelloMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus <[email protected]>
*/
public class SrpServerKeyExchangeMessageTest {

SrpServerKeyExchangeMessage message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Pierre Tilhaus <[email protected]>
*/
public class SupplementalDataMessageTest {

SupplementalDataMessage message;
Expand Down
Loading

0 comments on commit c2826a3

Please sign in to comment.