de.rub.nds.tlsbreaker.breakercommons.util.response.FingerprintSecretPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of breaker-commons Show documentation
Show all versions of breaker-commons Show documentation
A tool collection of various attacks on TLS based on TLS-Attacker
/**
* TLS-Breaker - A tool collection of various attacks on TLS based on TLS-Attacker
*
* Copyright 2021-2022 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
*
* Licensed under Apache License, Version 2.0
* http://www.apache.org/licenses/LICENSE-2.0.txt
*/
package de.rub.nds.tlsbreaker.breakercommons.util.response;
/**
*
*/
public class FingerprintSecretPair {
private final ResponseFingerprint fingerprint;
private final int appliedSecret;
private FingerprintSecretPair() {
fingerprint = null;
appliedSecret = 0;
}
public FingerprintSecretPair(ResponseFingerprint fingerprint, int appliedSecret) {
this.fingerprint = fingerprint;
this.appliedSecret = appliedSecret;
}
/**
* @return the fingerprint
*/
public ResponseFingerprint getFingerprint() {
return fingerprint;
}
/**
* @return the appliedSecret
*/
public int getAppliedSecret() {
return appliedSecret;
}
}