Python/ciphers
Caeden 4d0c830d2c
Add flake8 pluin flake8 bugbear to pre-commit (#7132)
* ci(pre-commit): Add ``flake8-builtins`` additional dependency to ``pre-commit`` (#7104)

* refactor: Fix ``flake8-builtins`` (#7104)

* fix(lru_cache): Fix naming conventions in docstrings (#7104)

* ci(pre-commit): Order additional dependencies alphabetically (#7104)

* fix(lfu_cache): Correct function name in docstring (#7104)

* Update strings/snake_case_to_camel_pascal_case.py

Co-authored-by: Christian Clauss <cclauss@me.com>

* Update data_structures/stacks/next_greater_element.py

Co-authored-by: Christian Clauss <cclauss@me.com>

* Update digital_image_processing/index_calculation.py

Co-authored-by: Christian Clauss <cclauss@me.com>

* Update graphs/prim.py

Co-authored-by: Christian Clauss <cclauss@me.com>

* Update hashes/djb2.py

Co-authored-by: Christian Clauss <cclauss@me.com>

* refactor: Rename `_builtin` to `builtin_` ( #7104)

* fix: Rename all instances (#7104)

* refactor: Update variable names (#7104)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* ci: Create ``tox.ini`` and ignore ``A003`` (#7123)

* revert: Remove function name changes (#7104)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Rename tox.ini to .flake8

* Update data_structures/heap/heap.py

Co-authored-by: Dhruv Manilawala <dhruvmanila@gmail.com>

* refactor: Rename `next_` to `next_item` (#7104)

* ci(pre-commit): Add `flake8` plugin `flake8-bugbear` (#7127)

* refactor: Follow `flake8-bugbear` plugin (#7127)

* fix: Correct `knapsack` code (#7127)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

Co-authored-by: Christian Clauss <cclauss@me.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Dhruv Manilawala <dhruvmanila@gmail.com>
2022-10-13 18:03:06 +02:00
..
__init__.py Add __init__.py files in all the directories (#2503) 2020-09-28 19:42:36 +02:00
a1z26.py from __future__ import annotations (#4763) 2021-09-22 23:11:51 +02:00
affine_cipher.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
atbash.py fix(mypy): Fix annotations for 13 cipher algorithms (#4278) 2021-03-22 07:59:51 +01:00
baconian_cipher.py Remove wrongly placed double qoutes (#5530) 2021-10-23 01:14:08 +08:00
base16.py Split base85.py into functions, Add doctests (#5746) 2021-11-02 11:10:25 +01:00
base32.py split into usable functions and added docstrings for base32 cipher (#5466) 2021-10-22 13:14:35 +02:00
base64.py Split base85.py into functions, Add doctests (#5746) 2021-11-02 11:10:25 +01:00
base85.py Split base85.py into functions, Add doctests (#5746) 2021-11-02 11:10:25 +01:00
beaufort_cipher.py fix(mypy): Fix annotations for 13 cipher algorithms (#4278) 2021-03-22 07:59:51 +01:00
bifid.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
brute_force_caesar_cipher.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
caesar_cipher.py Pyupgrade to Python 3.9 (#4718) 2021-09-07 13:37:03 +02:00
cryptomath_module.py fix(mypy): Fix annotations for 13 cipher algorithms (#4278) 2021-03-22 07:59:51 +01:00
decrypt_caesar_with_chi_squared.py Make decrypt_caesar_with_chi_squared work with upper case letters (#5379) 2021-10-31 11:46:31 +01:00
deterministic_miller_rabin.py The black formatter is no longer beta (#5960) 2022-01-30 20:29:54 +01:00
diffie_hellman.py fix(mypy): type annotations for cipher algorithms (#4306) 2021-04-04 07:22:12 +02:00
diffie.py Pyupgrade to Python 3.9 (#4718) 2021-09-07 13:37:03 +02:00
elgamal_key_generator.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
enigma_machine2.py Fix tiny spelling error (#6219) 2022-07-04 00:28:53 +08:00
hill_cipher.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
mixed_keyword_cypher.py Add flake8 pluin flake8 bugbear to pre-commit (#7132) 2022-10-13 18:03:06 +02:00
mono_alphabetic_ciphers.py fix(mypy): type annotations for cipher algorithms (#4306) 2021-04-04 07:22:12 +02:00
morse_code.py Add tests to morse_code.py (#5337) 2021-10-16 18:57:38 +02:00
onepad_cipher.py fix(mypy): type annotations for cipher algorithms (#4306) 2021-04-04 07:22:12 +02:00
playfair_cipher.py pre-commit autoupdate: pyupgrade v2.34.0 -> v2.37.0 (#6245) 2022-07-11 10:19:52 +02:00
polybius.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
porta_cipher.py fix(mypy): type annotations for cipher algorithms (#4306) 2021-04-04 07:22:12 +02:00
prehistoric_men.txt Fix all errors mentioned in pre-commit run (#2512) 2020-09-30 10:38:00 +02:00
rabin_miller.py Add flake8 pluin flake8 bugbear to pre-commit (#7132) 2022-10-13 18:03:06 +02:00
rail_fence_cipher.py fix(mypy): type annotations for cipher algorithms (#4306) 2021-04-04 07:22:12 +02:00
README.md Add README files 2/8 (#5766) 2021-11-11 21:39:54 +08:00
rot13.py fix(mypy): type annotations for cipher algorithms (#4306) 2021-04-04 07:22:12 +02:00
rsa_cipher.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
rsa_factorization.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
rsa_key_generator.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
shuffled_shift_cipher.py Fix some typos (#6113) 2022-05-01 18:44:23 +08:00
simple_keyword_cypher.py fix(mypy): type annotations for cipher algorithms (#4306) 2021-04-04 07:22:12 +02:00
simple_substitution_cipher.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
trafid_cipher.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
transposition_cipher_encrypt_decrypt_file.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
transposition_cipher.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
vigenere_cipher.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
xor_cipher.py from __future__ import annotations (#4763) 2021-09-22 23:11:51 +02:00

Ciphers

Ciphers are used to protect data from people that are not allowed to have it. They are everywhere on the internet to protect your connections.