aesgcm_decrypt_text. Internal helper function. This docstring was added automatically to improve maintainability. Args: blob_b64: Parameter. Returns: Varies.
(blob_b64: str)
| 622 | finally: |
| 623 | try: |
| 624 | if os.path.exists(tmp_plain): |
| 625 | os.remove(tmp_plain) |
| 626 | except Exception: |
| 627 | pass |
| 628 | try: |
| 629 | finalize_fn(ok, err) |
| 630 | except Exception: |
| 631 | pass |
| 632 | threading.Thread(target=worker, daemon=True).start() |
| 633 | |
| 634 | |
| 635 | |
| 636 | def aesgcm_decrypt_generator(src_path: str): |
| 637 | """aesgcm_decrypt_generator. |
| 638 | |
| 639 | Cryptography helper for encrypting/decrypting application data. |
| 640 | |
| 641 | This docstring was expanded to make future maintenance easier. |
| 642 | |
| 643 | Args: |
| 644 | src_path: Parameter. |
| 645 | |
| 646 | Returns: |
| 647 | Varies. |
no outgoing calls
no test coverage detected