-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #543 from RUB-NDS/paddingrelease
Paddingrelease
- Loading branch information
Showing
17 changed files
with
163 additions
and
40 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
...rc/main/java/de/rub/nds/tlsattacker/attacks/exception/FingerprintExtractionException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/** | ||
* TLS-Attacker - A Modular Penetration Testing Framework for TLS | ||
* | ||
* Copyright 2014-2017 Ruhr University Bochum / Hackmanit GmbH | ||
* | ||
* Licensed under Apache License 2.0 | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
*/ | ||
package de.rub.nds.tlsattacker.attacks.exception; | ||
|
||
/** | ||
* | ||
* @author ic0ns | ||
*/ | ||
public class FingerprintExtractionException extends RuntimeException { | ||
|
||
public FingerprintExtractionException() { | ||
} | ||
|
||
public FingerprintExtractionException(String string) { | ||
super(string); | ||
} | ||
|
||
public FingerprintExtractionException(String string, Throwable thrwbl) { | ||
super(string, thrwbl); | ||
} | ||
|
||
public FingerprintExtractionException(Throwable thrwbl) { | ||
super(thrwbl); | ||
} | ||
|
||
public FingerprintExtractionException(String string, Throwable thrwbl, boolean bln, boolean bln1) { | ||
super(string, thrwbl, bln, bln1); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,8 @@ public State getState() { | |
return state; | ||
} | ||
|
||
@Override | ||
public void reset() { | ||
state.reset(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.