11# Seigr Toolset Crypto (STC)
22
33[ ![ Sponsor Seigr-lab] ( https://img.shields.io/badge/Sponsor-Seigr--lab-forestgreen?style=flat&logo=github )] ( https://github.com/sponsors/Seigr-lab )
4- [ ![ Version] ( https://img.shields.io/badge/version-0.2.0 -blue )] ( https://github.com/Seigr-lab/SeigrToolsetCrypto/releases )
4+ [ ![ Version] ( https://img.shields.io/badge/version-0.2.1 -blue )] ( https://github.com/Seigr-lab/SeigrToolsetCrypto/releases )
55[ ![ License] ( https://img.shields.io/badge/license-ANTI--CAPITALIST-red )] ( LICENSE )
66
77** Post-classical cryptographic engine with entropy-regenerative architecture**
88
99## Overview
1010
11- STC v0.2.0 is a research-grade cryptographic system that rejects traditional symmetric/asymmetric paradigms. Instead of XOR-based mixing, static keys, and classical block ciphers, it implements:
11+ STC v0.2.1 is a research-grade cryptographic system that rejects traditional symmetric/asymmetric paradigms. Instead of XOR-based mixing, static keys, and classical block ciphers, it implements:
1212
1313- ** Continuous Entropy Lattice (CEL)** - Self-evolving entropy field regenerated from computational deltas
1414- ** Probabilistic Hashing Engine (PHE)** - Multi-path hashing with CEL-driven path selection
1515- ** Contextual Key Emergence (CKE)** - Ephemeral keys reconstructed from context intersections
1616- ** Data-State Folding (DSF)** - Encryption via multidimensional tensor folding
1717- ** Polymorphic Cryptographic Flow (PCF)** - Dynamic algorithmic morphing
18- - ** State Management** - Deterministic reconstruction from compact persistence vectors
18+ - ** State Management** - Deterministic reconstruction with varint compression
1919
2020## Architecture
2121
@@ -33,31 +33,41 @@ interfaces/
3333├── cli/ # Command-line tools
3434└── bindings/ # Future cross-language bindings
3535
36- utils/ # Mathematical primitives
36+ utils/ # Mathematical primitives + TLV varint encoding
3737tests/ # Validation and integrity checks
3838```
3939
40- ## ⚡ Performance (v0.2.0 )
40+ ## ⚡ Performance (v0.2.1 )
4141
42- - ** Encryption** : ~ 1.3s for small messages (76x faster than v0.2.0-alpha )
43- - ** Decryption** : ~ 0.9s for small messages
44- - ** Metadata Size** : ~ 786 KB (constant, independent of data size )
45- - ** Total Throughput** : ~ 2.3s for encrypt+decrypt cycle
42+ - ** Encryption** : ~ 0.6s for small messages (2x faster than v0.2.0)
43+ - ** Decryption** : ~ 0.5s for small messages
44+ - ** Metadata Size** : ~ 276 KB without decoys, ~ 414 KB with 3 decoys (65% smaller than v0.2.0 )
45+ - ** Total Throughput** : ~ 1.2s for encrypt+decrypt cycle
4646
47+ > ** Version History** :
48+ > - v0.2.1: 1.95x faster than v0.2.0, 65% smaller metadata via varint encoding
49+ > - v0.2.0: 76x faster than v0.1.0 via systematic optimizations
50+ >
4751> See [ PERFORMANCE_OPTIMIZATIONS.md] ( PERFORMANCE_OPTIMIZATIONS.md ) for optimization details and [ CHANGELOG.md] ( CHANGELOG.md ) for version history.
4852
4953## Installation
5054
51- ### From GitHub Release (Recommended)
55+ ### From PyPI (Recommended)
56+
57+ ``` bash
58+ pip install seigr-toolset-crypto==0.2.1
59+ ```
60+
61+ ### From GitHub Release
5262
5363Download the latest release from [ Releases] ( https://github.com/Seigr-lab/SeigrToolsetCrypto/releases ) :
5464
5565``` bash
5666# Install from wheel (recommended)
57- pip install seigr_toolset_crypto-0.2.0 -py3-none-any.whl
67+ pip install seigr_toolset_crypto-0.2.1 -py3-none-any.whl
5868
5969# Or install from source tarball
60- pip install seigr_toolset_crypto-0.2.0 .tar.gz
70+ pip install seigr_toolset_crypto-0.2.1 .tar.gz
6171```
6272
6373### From Source (Development)
0 commit comments