Metadata-Version: 2.4
Name: blocc_crypto_utils
Version: 0.3.0
Summary: A simple blockchain and cryptography utility package.
Author-email: Blockchain Developer <dev@example.com>
Project-URL: Homepage, https://github.com/example/blocc
Project-URL: Bug Tracker, https://github.com/example/blocc/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# blocc_crypto_utils

`blocc_crypto_utils` is a simple Python package for basic blockchain operations and cryptography helpers.

## Installation

You can install `blocc_crypto_utils` via pip:

```bash
pip install blocc_crypto_utils
```

## Usage

### Blockchain

```python
import blocc

# Generate a simple blockchain
chain = blocc.generate_blockchain(5)
for block in chain:
    print(block)
```

### Cryptography

```python
from blocc import generate_sha256

hash_val = generate_sha256("Hello, Blockchain!")
print(hash_val)
```

## Features

- Basic blockchain generation
- SHA-256 hashing and verification
- Minimal dependencies

## License

This project is licensed under the MIT License.
