diff options
Diffstat (limited to 'security/__init__.py')
| -rw-r--r-- | security/__init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/security/__init__.py b/security/__init__.py new file mode 100644 index 0000000..8b5131e --- /dev/null +++ b/security/__init__.py @@ -0,0 +1,9 @@ +""" +Security package for P2P/Mesh chat application. +Handles cryptography and secure memory operations. +""" + +from .crypto import CryptoManager +from .memory import SecureMemory + +__all__ = ['CryptoManager', 'SecureMemory'] |
