.gitignore
CHANGES.rst
CODE_OF_CONDUCT.md
CONTRIBUTING.md
FAQ.rst
LICENSE
MANIFEST.in
README.rst
SECURITY.md
SIGNATURE.txt
logo.png
pyproject.toml
setup.cfg
setup.py
sign_package_build.py
aiootp/__init__.py
aiootp/_debug_control.py
aiootp/_exceptions.py
aiootp/_gentools.py
aiootp/_paths.py
aiootp/__engagement/__init__.py
aiootp/__engagement/issue_reporting.py
aiootp/_constants/__init__.py
aiootp/_constants/datasets.py
aiootp/_constants/misc.py
aiootp/_permutations/__init__.py
aiootp/_permutations/affine_permutation.py
aiootp/_permutations/affine_permutation_config.py
aiootp/_permutations/affine_xor_chain.py
aiootp/_permutations/affine_xor_chain_config.py
aiootp/_permutations/fast_affine_xor_chain.py
aiootp/_typing/__init__.py
aiootp/_typing/_asynchs.py
aiootp/_typing/_ciphers.py
aiootp/_typing/_commons.py
aiootp/_typing/_databases.py
aiootp/_typing/_generics.py
aiootp/_typing/_keygens.py
aiootp/_typing/_paths.py
aiootp/_typing/_permutations.py
aiootp/_typing/_randoms.py
aiootp/_typing/interface.py
aiootp/_typing/tuples.py
aiootp/asynchs/__init__.py
aiootp/asynchs/aos.py
aiootp/asynchs/clocks.py
aiootp/asynchs/concurrency_interface.py
aiootp/asynchs/loops.py
aiootp/asynchs/processes.py
aiootp/asynchs/threads.py
aiootp/ciphers/__init__.py
aiootp/ciphers/chunky_2048.py
aiootp/ciphers/chunky_2048_config.py
aiootp/ciphers/cipher_interface.py
aiootp/ciphers/cipher_kdfs.py
aiootp/ciphers/cipher_stream_properties.py
aiootp/ciphers/cipher_streams.py
aiootp/ciphers/ciphertext_formatting.py
aiootp/ciphers/decipher_streams.py
aiootp/ciphers/dual_output_shake_cipher.py
aiootp/ciphers/dual_output_shake_cipher_config.py
aiootp/ciphers/key_bundle.py
aiootp/ciphers/padding.py
aiootp/ciphers/shake_permute_cipher.py
aiootp/ciphers/shake_permute_cipher_config.py
aiootp/ciphers/slick_256.py
aiootp/ciphers/slick_256_config.py
aiootp/ciphers/stream_hmac.py
aiootp/ciphers/stream_junction.py
aiootp/ciphers/synthetic_iv.py
aiootp/commons/__init__.py
aiootp/commons/configs.py
aiootp/commons/instances.py
aiootp/commons/namespaces.py
aiootp/commons/packaging.py
aiootp/commons/slots.py
aiootp/commons/typed_slots.py
aiootp/databases/__init__.py
aiootp/databases/async_database.py
aiootp/databases/database_properties.py
aiootp/databases/dbdomains.py
aiootp/databases/dbkdf.py
aiootp/databases/profile_tokens.py
aiootp/databases/sync_database.py
aiootp/db/README_DATABASES.rst
aiootp/generics/__init__.py
aiootp/generics/byte_io.py
aiootp/generics/canon.py
aiootp/generics/domains.py
aiootp/generics/hashing.py
aiootp/generics/transform.py
aiootp/keygens/__init__.py
aiootp/keygens/domain_kdf.py
aiootp/keygens/mnemonics.py
aiootp/keygens/package_signer.py
aiootp/keygens/package_verifier.py
aiootp/keygens/curve_25519/__init__.py
aiootp/keygens/curve_25519/double_diffie_hellman_client.py
aiootp/keygens/curve_25519/double_diffie_hellman_server.py
aiootp/keygens/curve_25519/ed25519.py
aiootp/keygens/curve_25519/shared_interface.py
aiootp/keygens/curve_25519/triple_diffie_hellman_client.py
aiootp/keygens/curve_25519/triple_diffie_hellman_server.py
aiootp/keygens/curve_25519/x25519.py
aiootp/keygens/passcrypt/__init__.py
aiootp/keygens/passcrypt/config.py
aiootp/keygens/passcrypt/hash_format.py
aiootp/keygens/passcrypt/interface.py
aiootp/keygens/passcrypt/session_init.py
aiootp/keygens/passcrypt/sessions_manager.py
aiootp/randoms/__init__.py
aiootp/randoms/_early_salts.py
aiootp/randoms/entropy_daemon.py
aiootp/randoms/rng.py
aiootp/randoms/simple.py
aiootp/randoms/threading_safe_entropy_pool.py
aiootp/randoms/ids/__init__.py
aiootp/randoms/ids/guid.py
aiootp/randoms/ids/guid_config.py
aiootp/randoms/ids/raw_guid.py
aiootp/randoms/ids/raw_guid_config.py
aiootp/randoms/ids/sequence_id.py
aiootp/randoms/ids/sequence_id_config.py
aiootp/tor/README_TOR.rst
licenses/aiofiles_LICENSE.txt
licenses/cpython_LICENSE.txt
licenses/pytest-asyncio_LICENSE.txt
licenses/pytest_LICENSE.txt
licenses/cryptography_LICENSES/LICENSE.APACHE
licenses/cryptography_LICENSES/LICENSE.BSD
licenses/cryptography_LICENSES/LICENSE.PSF
licenses/cryptography_LICENSES/LICENSE.txt
tests/conftest.py
tests/test_ByteIO.py
tests/test_Clock.py
tests/test_ConcurrencyGuard.py
tests/test_Database_AsyncDatabase.py
tests/test_GUID.py
tests/test_PackageSigner.py
tests/test_Padding.py
tests/test_Passcrypt.py
tests/test_Processes_Threads.py
tests/test_RawGUID.py
tests/test_SequenceID.py
tests/test_StreamHMAC.py
tests/test_Typing_class.py
tests/test_X25519_Ed25519.py
tests/test_affine_permutations.py
tests/test_aiootp.py
tests/test_asynchs.py
tests/test_cipher_configs.py
tests/test_ciphers.py
tests/test_commons.py
tests/test_config_classes.py
tests/test_databases.py
tests/test_event_loops.py
tests/test_exceptions.py
tests/test_generics.py
tests/test_gentools.py
tests/test_high_level_encryption.py
tests/test_keygens.py
tests/test_misc_in_ciphers.py
tests/test_misc_in_generics.py
tests/test_misc_in_keygens.py
tests/test_misc_in_randoms.py
tests/test_namespace_classes.py
tests/test_online_cipher_interfaces.py
tests/test_permutations.py
tests/test_randoms.py
tests/test_time_to_live.py
tests/test_typing.py
tests/test_typing_protocols.py