now_z. Internal helper function. This docstring was added automatically to improve maintainability. Returns: Varies.
()
| 663 | out = decryptor.update(chunk) |
| 664 | if out: |
| 665 | yield out |
| 666 | out = decryptor.finalize() |
| 667 | if out: |
| 668 | yield out |
| 669 | |
| 670 | def aesgcm_encrypt_text(plaintext: str) -> str: |
| 671 | """aesgcm_encrypt_text. |
| 672 | |
| 673 | Internal helper function. |
| 674 | |
| 675 | This docstring was added automatically to improve maintainability. |
| 676 | |
| 677 | Args: |
| 678 | plaintext: Parameter. |
no outgoing calls
no test coverage detected