azadeh-afzar/Mersad-Cryptography-Library

View on GitHub

Showing 3 of 6 total issues

Function mixalph_cipher_translator has a Cognitive Complexity of 15 (exceeds 10 allowed). Consider refactoring.
Open

def mixalph_cipher_translator(text: str, **kwargs: KWARGS_TYPE) -> str:
    """
    Translate a string with Mixed Alphabet cipher algorithm.

    This cipher uses a key sequence for encryption, this key can be in any order
Severity: Minor
Found in mersad/classical/mixalph_cipher.py - About 1 hr 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

Function route_cipher_translator has a Cognitive Complexity of 13 (exceeds 10 allowed). Consider refactoring.
Open

def route_cipher_translator(text: str, **kwargs: KWARGS_TYPE) -> str:
    """
    Translate a string with Route cipher algorithm.

    :param text                             : string to be translated.
Severity: Minor
Found in mersad/classical/route_cipher.py - About 45 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

Function affine_cipher_translator has a Cognitive Complexity of 11 (exceeds 10 allowed). Consider refactoring.
Open

def affine_cipher_translator(text: str, **kwargs: KWARGS_TYPE) -> str:
    """
    Translate a string with Affine cipher algorithm.

    :param text                             : string to be translated.
Severity: Minor
Found in mersad/classical/affine_cipher.py - About 25 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

Severity
Category
Status
Source
Language