gitextract_ft4u3o1q/ ├── .all-contributorsrc ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ ├── feature_request.md │ │ └── maintenance_suggestion.md │ ├── config.yml │ ├── dependabot.yml │ ├── lock.yml │ ├── release-drafter.yml │ └── workflows/ │ ├── coverage.yml │ ├── release.yml │ ├── releasetestpypi.yml │ ├── terminaltest.yml │ └── tests2.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Pictures_for_README/ │ └── .gitattributes ├── README.md ├── ciphey/ │ ├── __init__.py │ ├── __main__.py │ ├── basemods/ │ │ ├── Checkers/ │ │ │ ├── __init__.py │ │ │ ├── any.py │ │ │ ├── brandon.py │ │ │ ├── entropy.py │ │ │ ├── ezcheck.py │ │ │ ├── format.py │ │ │ ├── gtest.py │ │ │ ├── human.py │ │ │ ├── quadgrams.py │ │ │ ├── quorum.py │ │ │ ├── regex.py │ │ │ └── what.py │ │ ├── Crackers/ │ │ │ ├── __init__.py │ │ │ ├── affine.py │ │ │ ├── ascii_shift.py │ │ │ ├── baconian.py │ │ │ ├── caesar.py │ │ │ ├── hash.py │ │ │ ├── rot47.py │ │ │ ├── soundex.py │ │ │ ├── vigenere.py │ │ │ ├── xandy.py │ │ │ └── xortool.py │ │ ├── Decoders/ │ │ │ ├── __init__.py │ │ │ ├── a1z26.py │ │ │ ├── atbash.py │ │ │ ├── base58_bitcoin.py │ │ │ ├── base58_flickr.py │ │ │ ├── base58_ripple.py │ │ │ ├── base62.py │ │ │ ├── base64_url.py │ │ │ ├── base65536.py │ │ │ ├── base69.py │ │ │ ├── base91.py │ │ │ ├── bases.py │ │ │ ├── baudot.py │ │ │ ├── binary.py │ │ │ ├── braille.py │ │ │ ├── brainfuck.py │ │ │ ├── decimal.py │ │ │ ├── dna.py │ │ │ ├── dtmf.py │ │ │ ├── galactic.py │ │ │ ├── gzip.py │ │ │ ├── hexadecimal.py │ │ │ ├── leetspeak.py │ │ │ ├── letters.archive │ │ │ ├── morse_code.py │ │ │ ├── multi_tap.py │ │ │ ├── octal.py │ │ │ ├── reverse.py │ │ │ ├── tap_code.py │ │ │ ├── unicode.py │ │ │ ├── url.py │ │ │ ├── uuencode.py │ │ │ └── z85.py │ │ ├── Resources/ │ │ │ ├── __init__.py │ │ │ ├── cipheydists.py │ │ │ └── files.py │ │ ├── Searchers/ │ │ │ ├── __init__.py │ │ │ ├── astar.py │ │ │ ├── atar.md │ │ │ ├── ausearch.py │ │ │ ├── imperfection.py │ │ │ └── perfection.py │ │ └── __init__.py │ ├── ciphey.py │ ├── common.py │ ├── iface/ │ │ ├── __init__.py │ │ ├── _config.py │ │ ├── _fwd.py │ │ ├── _modules.py │ │ └── _registry.py │ └── mathsHelper.py ├── codecov.yml ├── license ├── noxfile.py ├── pyproject.toml ├── tests/ │ ├── __init__.py │ ├── brandon_interface.md │ ├── cli.py │ ├── dict.py │ ├── enciphey.py │ ├── generate_tests.py │ ├── integration.py │ ├── lukas.py │ ├── speed_test.archive │ ├── test_advanced_ciphers.py │ ├── test_click.py │ ├── test_click_printing.py │ ├── test_main.py │ ├── test_quick.py │ └── test_regex.py ├── tools/ │ └── freq_analysis.py └── translations/ ├── de/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── README.md ├── fr/ │ └── README.md ├── hu/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── README.md ├── id/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── README.md ├── it/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── README.md ├── nl/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── README.md ├── pt-br/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── README.md ├── ru/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── README.md ├── th/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── README.md └── zh/ ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md └── README.md