Metadata-Version: 2.4
Name: tkdf256
Version: 1.0.1
Summary: Canonical reference implementation of TKDF-256 for CTP/IP
Author-email: Erico Lisboa <contact@designledger.co>
License: CC-BY-NC-4.0
Project-URL: Homepage, https://designledger.co
Project-URL: Repository, https://github.com/thedesignledger/tkdf256-python
Project-URL: Documentation, https://time.foundation
Keywords: ctpip,tkdf256,hash,key-derivation
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary 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: Programming Language :: Python :: 3.12
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# TKDF-256

Canonical reference implementation of TKDF-256 for CTP/IP (Causal Time Protocol / Intentional Processing).

## Installation

```bash
pip install tkdf256
```

## Quick Start

```python
from tkdf256 import derive_heritage

# Genesis Anchor reproduction
result = derive_heritage(
    "1ed80be5bdf906eb259b04e9331fe4ec0cb3bc01aed5dbfb0bf9016c521825ea",
    "c68d5bb2a8759ea332f642c6758d82ebbf8f0d6826f4182103b9a81a2b8f5af8", 
    0.9497
)
print(result)  # c8041da8bbde4afe00906e6d0efb64300f90d2755b92b7835a736281fb179136
```

## License

CC-BY-NC 4.0  
Author: Erico Lisboa, Genesis Architect  
Entity: Design Ledger Pty Ltd, ABN 50 669 856 339  
Contact: designledger.co  
Commercial use: licensed through Design Ledger Pty Ltd.
