Python/ciphers
2023-07-28 17:53:09 +01:00
..
__init__.py
a1z26.py
affine_cipher.py
atbash.py
autokey.py
baconian_cipher.py Remove wrongly placed double qoutes (#5530) 2021-10-23 01:14:08 +08:00
base16.py Write a proper implementation for base16 (#6909) 2022-10-26 19:09:28 +13:00
base32.py
base64.py Add more ruff rules (#8767) 2023-05-26 09:34:17 +02:00
base85.py Split base85.py into functions, Add doctests (#5746) 2021-11-02 11:10:25 +01:00
beaufort_cipher.py
bifid.py Make some ruff fixes (#8154) 2023-03-01 17:23:33 +01:00
brute_force_caesar_cipher.py refactor: Move constants outside of variable scope (#7262) 2022-10-16 15:03:29 +05:30
caesar_cipher.py
cryptomath_module.py
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 ruff rules ISC flake8-implicit-str-concat (#8892) 2023-07-28 17:53:09 +01:00
diffie.py
elgamal_key_generator.py Follow Flake8 pep3101 and remove modulo formatting (#7339) 2022-10-16 22:50:11 +02:00
enigma_machine2.py
hill_cipher.py
mixed_keyword_cypher.py Improve readability of ciphers/mixed_keyword_cypher.py (#8626) 2023-06-09 11:06:37 +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
onepad_cipher.py
playfair_cipher.py
polybius.py Make some ruff fixes (#8154) 2023-03-01 17:23:33 +01:00
porta_cipher.py
prehistoric_men.txt
rabin_miller.py
rail_fence_cipher.py
README.md Add README files 2/8 (#5766) 2021-11-11 21:39:54 +08:00
rot13.py
rsa_cipher.py
rsa_factorization.py
rsa_key_generator.py Follow Flake8 pep3101 and remove modulo formatting (#7339) 2022-10-16 22:50:11 +02:00
shuffled_shift_cipher.py
simple_keyword_cypher.py
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

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.