---------------------------------------------------------------------- This is the API documentation for the gdtest_source_disabled library. ---------------------------------------------------------------------- ## Functions Public functions encrypt(text: str, key: str) -> str Encrypt text with a key. Parameters ---------- text The plaintext to encrypt. key The encryption key. Returns ------- str The encrypted text. decrypt(text: str, key: str) -> str Decrypt text with a key. Parameters ---------- text The ciphertext to decrypt. key The decryption key. Returns ------- str The decrypted text.