tlsfuzzer/tlslite-ng

View on GitHub
tlslite/handshakehashes.py

Summary

Maintainability
B
6 hrs
Test Coverage
A
100%

Function digest has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    def digest(self, digest=None):
        """
        Calculate and return digest for the already consumed data.

        Used for Finished and CertificateVerify messages.
Severity: Minor
Found in tlslite/handshakehashes.py - About 55 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Avoid too many return statements within this function.
Open

            return self._handshakeSHA256.digest()
Severity: Major
Found in tlslite/handshakehashes.py - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

                return self._handshakeSHA512.digest()
    Severity: Major
    Found in tlslite/handshakehashes.py - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

                  return self._handshake_buffer
      Severity: Major
      Found in tlslite/handshakehashes.py - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                    return self._handshakeSHA384.digest()
        Severity: Major
        Found in tlslite/handshakehashes.py - About 30 mins to fix

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

                  md5Bytes = MD5(masterSecret + bytearray([0x5c]*48) + \
                                   bytearray(imacMD5.digest()))
          Severity: Major
          Found in tlslite/handshakehashes.py and 1 other location - About 1 hr to fix
          tlslite/handshakehashes.py on lines 92..93

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 41.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

                  shaBytes = SHA1(masterSecret + bytearray([0x5c]*40) + \
                                   bytearray(imacSHA.digest()))
          Severity: Major
          Found in tlslite/handshakehashes.py and 1 other location - About 1 hr to fix
          tlslite/handshakehashes.py on lines 90..91

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 41.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

                  imacMD5.update(compatHMAC(label + masterSecret + bytearray([0x36]*48)))
          Severity: Minor
          Found in tlslite/handshakehashes.py and 1 other location - About 40 mins to fix
          tlslite/handshakehashes.py on lines 88..88

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 37.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

                  imacSHA.update(compatHMAC(label + masterSecret + bytearray([0x36]*40)))
          Severity: Minor
          Found in tlslite/handshakehashes.py and 1 other location - About 40 mins to fix
          tlslite/handshakehashes.py on lines 87..87

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 37.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          The backslash is redundant between brackets
          Open

                  md5Bytes = MD5(masterSecret + bytearray([0x5c]*48) + \
          Severity: Minor
          Found in tlslite/handshakehashes.py by pep8

          Avoid explicit line join between brackets.

          The preferred way of wrapping long lines is by using Python's
          implied line continuation inside parentheses, brackets and braces.
          Long lines can be broken over multiple lines by wrapping expressions
          in parentheses.  These should be used in preference to using a
          backslash for line continuation.
          
          E502: aaa = [123, \\n       123]
          E502: aaa = ("bbb " \\n       "ccc")
          
          Okay: aaa = [123,\n       123]
          Okay: aaa = ("bbb "\n       "ccc")
          Okay: aaa = "bbb " \\n    "ccc"
          Okay: aaa = 123  # \\

          Continuation line over-indented for visual indent
          Open

                                   bytearray(imacSHA.digest()))
          Severity: Minor
          Found in tlslite/handshakehashes.py by pep8

          Continuation lines indentation.

          Continuation lines should align wrapped elements either vertically
          using Python's implicit line joining inside parentheses, brackets
          and braces, or using a hanging indent.
          
          When using a hanging indent these considerations should be applied:
          - there should be no arguments on the first line, and
          - further indentation should be used to clearly distinguish itself
            as a continuation line.
          
          Okay: a = (\n)
          E123: a = (\n    )
          
          Okay: a = (\n    42)
          E121: a = (\n   42)
          E122: a = (\n42)
          E123: a = (\n    42\n    )
          E124: a = (24,\n     42\n)
          E125: if (\n    b):\n    pass
          E126: a = (\n        42)
          E127: a = (24,\n      42)
          E128: a = (24,\n    42)
          E129: if (a or\n    b):\n    pass
          E131: a = (\n    42\n 24)

          The backslash is redundant between brackets
          Open

                  shaBytes = SHA1(masterSecret + bytearray([0x5c]*40) + \
          Severity: Minor
          Found in tlslite/handshakehashes.py by pep8

          Avoid explicit line join between brackets.

          The preferred way of wrapping long lines is by using Python's
          implied line continuation inside parentheses, brackets and braces.
          Long lines can be broken over multiple lines by wrapping expressions
          in parentheses.  These should be used in preference to using a
          backslash for line continuation.
          
          E502: aaa = [123, \\n       123]
          E502: aaa = ("bbb " \\n       "ccc")
          
          Okay: aaa = [123,\n       123]
          Okay: aaa = ("bbb "\n       "ccc")
          Okay: aaa = "bbb " \\n    "ccc"
          Okay: aaa = 123  # \\

          Block comment should start with '# '
          Open

                  #pylint: enable=maybe-no-member
          Severity: Minor
          Found in tlslite/handshakehashes.py by pep8

          Separate inline comments by at least two spaces.

          An inline comment is a comment on the same line as a statement.
          Inline comments should be separated by at least two spaces from the
          statement. They should start with a # and a single space.
          
          Each line of a block comment starts with a # and a single space
          (unless it is indented text inside the comment).
          
          Okay: x = x + 1  # Increment x
          Okay: x = x + 1    # Increment x
          Okay: # Block comment
          E261: x = x + 1 # Increment x
          E262: x = x + 1  #Increment x
          E262: x = x + 1  #  Increment x
          E265: #Block comment
          E266: ### Block comment

          Block comment should start with '# '
          Open

                  #pylint: disable=maybe-no-member
          Severity: Minor
          Found in tlslite/handshakehashes.py by pep8

          Separate inline comments by at least two spaces.

          An inline comment is a comment on the same line as a statement.
          Inline comments should be separated by at least two spaces from the
          statement. They should start with a # and a single space.
          
          Each line of a block comment starts with a # and a single space
          (unless it is indented text inside the comment).
          
          Okay: x = x + 1  # Increment x
          Okay: x = x + 1    # Increment x
          Okay: # Block comment
          E261: x = x + 1 # Increment x
          E262: x = x + 1  #Increment x
          E262: x = x + 1  #  Increment x
          E265: #Block comment
          E266: ### Block comment

          Expected 2 blank lines, found 1
          Open

          class HandshakeHashes(object):
          Severity: Minor
          Found in tlslite/handshakehashes.py by pep8

          Separate top-level function and class definitions with two blank lines.

          Method definitions inside a class are separated by a single blank
          line.
          
          Extra blank lines may be used (sparingly) to separate groups of
          related functions.  Blank lines may be omitted between a bunch of
          related one-liners (e.g. a set of dummy implementations).
          
          Use blank lines in functions, sparingly, to indicate logical
          sections.
          
          Okay: def a():\n    pass\n\n\ndef b():\n    pass
          Okay: def a():\n    pass\n\n\nasync def b():\n    pass
          Okay: def a():\n    pass\n\n\n# Foo\n# Bar\n\ndef b():\n    pass
          Okay: default = 1\nfoo = 1
          Okay: classify = 1\nfoo = 1
          
          E301: class Foo:\n    b = 0\n    def bar():\n        pass
          E302: def a():\n    pass\n\ndef b(n):\n    pass
          E302: def a():\n    pass\n\nasync def b(n):\n    pass
          E303: def a():\n    pass\n\n\n\ndef b(n):\n    pass
          E303: def a():\n\n\n\n    pass
          E304: @decorator\n\ndef a():\n    pass
          E305: def a():\n    pass\na()
          E306: def a():\n    def b():\n        pass\n    def c():\n        pass

          Continuation line over-indented for visual indent
          Open

                                   bytearray(imacMD5.digest()))
          Severity: Minor
          Found in tlslite/handshakehashes.py by pep8

          Continuation lines indentation.

          Continuation lines should align wrapped elements either vertically
          using Python's implicit line joining inside parentheses, brackets
          and braces, or using a hanging indent.
          
          When using a hanging indent these considerations should be applied:
          - there should be no arguments on the first line, and
          - further indentation should be used to clearly distinguish itself
            as a continuation line.
          
          Okay: a = (\n)
          E123: a = (\n    )
          
          Okay: a = (\n    42)
          E121: a = (\n   42)
          E122: a = (\n42)
          E123: a = (\n    42\n    )
          E124: a = (24,\n     42\n)
          E125: if (\n    b):\n    pass
          E126: a = (\n        42)
          E127: a = (24,\n      42)
          E128: a = (24,\n    42)
          E129: if (a or\n    b):\n    pass
          E131: a = (\n    42\n 24)

          Block comment should start with '# '
          Open

              #pylint: disable=protected-access, maybe-no-member
          Severity: Minor
          Found in tlslite/handshakehashes.py by pep8

          Separate inline comments by at least two spaces.

          An inline comment is a comment on the same line as a statement.
          Inline comments should be separated by at least two spaces from the
          statement. They should start with a # and a single space.
          
          Each line of a block comment starts with a # and a single space
          (unless it is indented text inside the comment).
          
          Okay: x = x + 1  # Increment x
          Okay: x = x + 1    # Increment x
          Okay: # Block comment
          E261: x = x + 1 # Increment x
          E262: x = x + 1  #Increment x
          E262: x = x + 1  #  Increment x
          E265: #Block comment
          E266: ### Block comment

          There are no issues that match your filters.

          Category
          Status