Skip to content

Commit

Permalink
Merge pull request #682 from inikolcev/fix-order-of-nodes
Browse files Browse the repository at this point in the history
ExpectCertificate should be before ExpectServerKeyExchange
  • Loading branch information
tomato42 committed Jul 20, 2020
2 parents 0574741 + 5325a66 commit 9ded2d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test-atypical-padding.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,9 +470,9 @@ def main():
CipherSuite.TLS_EMPTY_RENEGOTIATION_INFO_SCSV]
node = node.add_child(ClientHelloGenerator(ciphers, extensions=ext))
node = node.add_child(ExpectServerHello())
node = node.add_child(ExpectCertificate())
if dhe:
node = node.add_child(ExpectServerKeyExchange())
node = node.add_child(ExpectCertificate())
node = node.add_child(ExpectServerHelloDone())
node = node.add_child(ClientKeyExchangeGenerator())
node = node.add_child(ChangeCipherSpecGenerator())
Expand Down

0 comments on commit 9ded2d9

Please sign in to comment.