(decrypt_key, ciphertext)
| 214 | |
| 215 | |
| 216 | def symmetric_decrypt(decrypt_key, ciphertext): |
| 217 | return cryptography_symmetric_decrypt( |
| 218 | decrypt_key=decrypt_key, ciphertext=ciphertext |
| 219 | ) |
| 220 | |
| 221 | |
| 222 | def cryptography_symmetric_encrypt(encrypt_key, plaintext): |