Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/codecipher_package_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ jobs:
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide => strict 79
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=79 --statistics --max-doc-length 79
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=79 --statistics --max-doc-length 127
2 changes: 1 addition & 1 deletion .github/workflows/codecipher_python_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
modules_ok=0
modules=($(find codecipher/ tests/ -type f -name '*.py' -exec echo '{}' \;))
for mod in "${modules[@]}"; do line_length=$(wc -L < "${mod}"); [[ $line_length -gt 80 ]] && modules_ok=1; done
for mod in "${modules[@]}"; do line_length=$(wc -L < "${mod}"); [[ $line_length -gt 127 ]] && modules_ok=1; done
[[ $modules_ok -eq 0 ]] && echo ok || exit 1
- name: Check max number of lines in modules
id: num_line_checker
Expand Down
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ RUN python3 -m pip install --upgrade build
RUN rm -f get-pip.py
RUN mkdir /codecipher/
COPY codecipher /codecipher/
COPY setup.cfg /
COPY pyproject.toml /
COPY MANIFEST.in /
COPY setup.py /
Expand All @@ -52,7 +51,6 @@ RUN pip install /dist/codecipher-*.whl
RUN rm -rf /codecipher*
RUN rm -rf dist/
RUN rm -rf tests/
RUN rm -f setup.cfg
RUN rm -f pyproject.toml
RUN rm -f MANIFEST.in
RUN rm -f setup.py
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ More documentation and info at

[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Copyright (C) 2021 - 2025 by [electux.github.io/codecipher](https://electux.github.io/codecipher/)
Copyright (C) 2021 - 2026 by [electux.github.io/codecipher](https://electux.github.io/codecipher/)

**codecipher** is free software; you can redistribute it and/or modify
it under the same terms as Python itself, either Python version 3.x or,
Expand Down
2 changes: 1 addition & 1 deletion codecipher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
__init__.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand Down
6 changes: 3 additions & 3 deletions codecipher/a1z52n62/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
__init__.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -31,10 +31,10 @@
sys.exit(f'\n{__file__}\n{ats_error_message}\n') # pragma: no cover

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/a1z52n62/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
decode.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -24,10 +24,10 @@
from typing import List, Optional

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/a1z52n62/encode.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
encode.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -24,10 +24,10 @@
from typing import List, Optional

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/atbs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
__init__.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -31,10 +31,10 @@
sys.exit(f'\n{__file__}\n{ats_error_message}\n') # pragma: no cover

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/atbs/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
decode.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -31,10 +31,10 @@
sys.exit(f'\n{__file__}\n{ats_error_message}\n') # pragma: no cover

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/atbs/encode.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
encode.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -31,10 +31,10 @@
sys.exit(f'\n{__file__}\n{ats_error_message}\n') # pragma: no cover

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/atbs/lookup_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
lookup_table.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -22,10 +22,10 @@
from typing import List, Dict

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/b64/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
__init__.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -31,10 +31,10 @@
sys.exit(f'\n{__file__}\n{ats_error_message}\n') # pragma: no cover

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/b64/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
decode.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -25,10 +25,10 @@
from typing import List, Optional

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/b64/encode.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
encode.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -25,10 +25,10 @@
from typing import List, Optional

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/caesar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
__init__.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -31,10 +31,10 @@
sys.exit(f'\n{__file__}\n{ats_error_message}\n') # pragma: no cover

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/caesar/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
decode.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -24,10 +24,10 @@
from typing import List, Optional

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/caesar/encode.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
encode.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -24,10 +24,10 @@
from typing import List, Optional

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/vernam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
__init__.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -31,10 +31,10 @@
sys.exit(f'\n{__file__}\n{ats_error_message}\n') # pragma: no cover

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
6 changes: 3 additions & 3 deletions codecipher/vernam/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Module
decode.py
Copyright
Copyright (C) 2021 - 2025 Vladimir Roncevic <elektron.ronca@gmail.com>
Copyright (C) 2021 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
codecipher is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
Expand All @@ -24,10 +24,10 @@
from typing import List, Optional

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2025, https://electux.github.io/codecipher'
__copyright__: str = '(C) 2026, https://electux.github.io/codecipher'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/electux/codecipher/blob/main/LICENSE'
__version__: str = '1.4.9'
__version__: str = '1.5.0'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'
Expand Down
Loading