jucrypt 0.2.0__tar.gz → 0.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {jucrypt-0.2.0 → jucrypt-0.2.3}/PKG-INFO +3 -1
- jucrypt-0.2.3/jucrypt/__init__.py +5 -0
- jucrypt-0.2.0/jucrypt/default_sboxes.py → jucrypt-0.2.3/jucrypt/backup_sboxes.py +1 -1
- jucrypt-0.2.3/jucrypt/default_sboxes.py +4629 -0
- jucrypt-0.2.3/jucrypt/story.py +407 -0
- jucrypt-0.2.3/jucrypt/story_core.c +227 -0
- jucrypt-0.2.3/jucrypt/storyc.py +209 -0
- {jucrypt-0.2.0 → jucrypt-0.2.3}/jucrypt.egg-info/PKG-INFO +3 -1
- {jucrypt-0.2.0 → jucrypt-0.2.3}/jucrypt.egg-info/SOURCES.txt +5 -0
- {jucrypt-0.2.0 → jucrypt-0.2.3}/jucrypt.egg-info/requires.txt +3 -0
- jucrypt-0.2.3/jucrypt.egg-info/top_level.txt +3 -0
- {jucrypt-0.2.0 → jucrypt-0.2.3}/pyproject.toml +6 -4
- jucrypt-0.2.3/setup.py +11 -0
- jucrypt-0.2.0/jucrypt/__init__.py +0 -5
- jucrypt-0.2.0/jucrypt/story.py +0 -350
- jucrypt-0.2.0/jucrypt.egg-info/top_level.txt +0 -1
- {jucrypt-0.2.0 → jucrypt-0.2.3}/LICENSE +0 -0
- {jucrypt-0.2.0 → jucrypt-0.2.3}/README.md +0 -0
- {jucrypt-0.2.0 → jucrypt-0.2.3}/jucrypt.egg-info/dependency_links.txt +0 -0
- {jucrypt-0.2.0 → jucrypt-0.2.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jucrypt
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: Experimental symmetric cipher using user-provided narrative text as key material.
|
|
5
5
|
Author-email: "I. Nabil" <w3nabil@gmail.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -22,6 +22,8 @@ Description-Content-Type: text/markdown
|
|
|
22
22
|
License-File: LICENSE
|
|
23
23
|
Provides-Extra: experiment
|
|
24
24
|
Requires-Dist: numpy>=1.23; extra == "experiment"
|
|
25
|
+
Provides-Extra: dev
|
|
26
|
+
Requires-Dist: pytest; extra == "dev"
|
|
25
27
|
Dynamic: license-file
|
|
26
28
|
|
|
27
29
|
# Ju's Story (STORY)
|
|
@@ -9,7 +9,7 @@ Source: lab/certified256/sboxes.json
|
|
|
9
9
|
S-boxes: 256 (keys 0..255)
|
|
10
10
|
|
|
11
11
|
Each entry is a permutation of 0..255 (0-indexed, validated).
|
|
12
|
-
Each of the sbox is guaranteed to have DDT of 4(min) to
|
|
12
|
+
Each of the sbox is guaranteed to have DDT of 4(min) to 4(max) and LAT of 16(min) to 16(max).
|
|
13
13
|
|
|
14
14
|
CUSTOM POOL OVERRIDE
|
|
15
15
|
==========================
|