From 4a3ae9929f4657a0f2e9ccf393205655895bb501 Mon Sep 17 00:00:00 2001 From: Gab <24553253+gabrix73@users.noreply.github.com> Date: Sat, 8 Mar 2025 14:59:35 +0100 Subject: Add files via upload --- security/__init__.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 security/__init__.py (limited to 'security/__init__.py') 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'] -- cgit v1.2.3