Metadata-Version: 2.1
Name: decryption_lib
Version: 0.1.0
Summary: A simple AES-CBC decryption library.
Author: Vinayak Pratap Rana
Author-email: perrcroshado@gmail.com
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
Requires-Dist: cryptography>=41.0.0

# Decryption Library

## Overview

A simple Python library for decrypting AES-CBC encrypted data. It uses a password-based key derivation function (PBKDF2 HMAC with SHA-256) to securely generate cryptographic keys.

## Installation

Install the library using `pip`:

```bash
pip install decryption_lib
