Metadata-Version: 2.1
Name: c2dcczp
Version: 1.0.3
Summary: c2dcczp is a simple block cipher implemented in C
Home-page: https://github.com/Rin-Wood/c2dcczp
Author: wood
Author-email: miraclerinwood@gmail.com
License: BSD
Keywords: c2dcczp
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
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: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# c2dcczp

`c2dcczp` is a Python package for decrypting data, using a custom CCZp decryption algorithm implemented in C.

## Features

- Provides efficient CCZp decryption functionality, based on C implementation.
- Supports Python 3.6+

## Installation

Install the latest version of `c2dcczp` from PyPI:

```bash
pip install c2dcczp
```

## Usage
Here's how to use `c2dcczp` for decryption:

```python
import c2dcczp

data = b'...your encrypted data...'
key = [uint32, uint32, uint32, uint32]

c2dcczp.SetKey(key)

dec = c2dcczp.decrypt(data)
