Metadata-Version: 2.4
Name: secure-core-ffi-native
Version: 0.3.5
Summary: Native PyO3 Python bindings for the secure-core-ffi AES-256-GCM core
Author: Ciprian Ștefan Pleșca
License: Apache-2.0
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# secure-core-ffi-python

Native Python bindings (PyO3) for `secure-core-ffi` — AES-256-GCM
encryption, backed by the same Rust core used by the C/C++, Node.js,
and WebAssembly bindings.

## Usage

```python
from secure_core_ffi import SecurityCore

core = SecurityCore(key)          # key must be exactly 32 bytes
ciphertext = core.encrypt(b"secret data")
plaintext = core.decrypt(ciphertext)
```

See the main [repository README](../../README.md) for more details.

