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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jucrypt
3
- Version: 0.2.0
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)
@@ -0,0 +1,5 @@
1
+ from .backup_sboxes import SBOX_POOL
2
+ from .storyc import STORYC
3
+ from .story import STORY
4
+ __all__ = ["SBOX_POOL", "STORYC", "STORY"]
5
+
@@ -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 10(max) and LAT of 12(min) to 20(max).
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
  ==========================