Metadata-Version: 2.4
Name: matp
Version: 0.1.0
Summary: Matryoshka Protocol - Invisible secure messaging system
Home-page: https://github.com/sangeet01/matp
Author: Sangeet Sharma
Author-email: sangeet.music01@gmail.com
Project-URL: Bug Reports, https://github.com/sangeet01/matp/issues
Project-URL: Source, https://github.com/sangeet01/matp
Project-URL: Documentation, https://github.com/sangeet01/matp/docs
Keywords: steganography cryptography messaging invisible security
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: cryptography>=3.4.8
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary


# Matryoshka Protocol - Basic Edition

The world's first truly invisible secure messaging protocol.

## Core Features
- **Ghost Steganography**: Messages hidden in normal web traffic
- **Fractal Encryption**: Self-healing Russian doll keys
- **Perfect Invisibility**: Mathematically indistinguishable from browsing
- **Plausible Deniability**: Cryptographic proof of innocence

## Installation
```bash
pip install matp
```

## Quick Start
```python
from matp import MatryoshkaProtocol

# Create protocol instances
alice = MatryoshkaProtocol()
bob = MatryoshkaProtocol()

# Send invisible message
message = "This message is completely invisible!"
ghost_msg = alice.send_message(message, use_steganography=True)

# Receive and decrypt
received = bob.receive_message(ghost_msg)
print("Received:", received)
```

Perfect for developers who need basic invisible messaging capabilities.
    
