Skip to content

Commit

Permalink
Merge pull request #426 from tls-attacker/prf_fix
Browse files Browse the repository at this point in the history
Fixed copy paste bug
  • Loading branch information
NErinola authored Oct 16, 2024
2 parents 990fa63 + 9de0ca7 commit 82560da
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,10 @@ public void mergeData(TlsScanReport report, TlsProbe probe) {
if (prfAlgorithm == PRFAlgorithm.TLS_PRF_LEGACY) {
supportsLegacyPrf = TestResults.TRUE;
}
if (prfAlgorithm == PRFAlgorithm.TLS_PRF_LEGACY) {
if (prfAlgorithm == PRFAlgorithm.TLS_PRF_SHA256) {
supportsSha256Prf = TestResults.TRUE;
}
if (prfAlgorithm == PRFAlgorithm.TLS_PRF_LEGACY) {
if (prfAlgorithm == PRFAlgorithm.TLS_PRF_SHA384) {
supportsSha384Prf = TestResults.TRUE;
}
}
Expand Down

0 comments on commit 82560da

Please sign in to comment.