## decrypt()


Decrypt text with a key.


Usage


``` python
decrypt(
    text,
    key,
)
```


## Parameters


`text: str`  
The ciphertext to decrypt.

`key: str`  
The decryption key.


## Returns


`str`  
The decrypted text.
