libcrypto 1.6.2__tar.gz → 1.6.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.
- {libcrypto-1.6.2/src/libcrypto.egg-info → libcrypto-1.6.3}/PKG-INFO +3 -3
- {libcrypto-1.6.2 → libcrypto-1.6.3}/README.md +2 -2
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/_version.py +1 -1
- {libcrypto-1.6.2 → libcrypto-1.6.3/src/libcrypto.egg-info}/PKG-INFO +3 -3
- {libcrypto-1.6.2 → libcrypto-1.6.3}/LICENSE +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/MANIFEST.in +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/pyproject.toml +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/setup.cfg +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/setup.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/__init__.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/_keccak.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/_ripemd160.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/addresses.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/bip32.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/cli.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/constants.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/formats.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/hash.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/keys.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/mnemonic.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/py.typed +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/secp256k1.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto/wallet.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto.egg-info/SOURCES.txt +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto.egg-info/dependency_links.txt +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto.egg-info/entry_points.txt +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/src/libcrypto.egg-info/top_level.txt +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/tests/test_addresses.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/tests/test_bip32.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/tests/test_constants.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/tests/test_formats.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/tests/test_hash.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/tests/test_keys.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/tests/test_mnemonic.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/tests/test_secp256k1.py +0 -0
- {libcrypto-1.6.2 → libcrypto-1.6.3}/tests/test_wallet.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: libcrypto
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.3
|
|
4
4
|
Summary: Pure Python cryptocurrency address generation and cryptographic utilities.
|
|
5
5
|
Author-email: Pymmdrza <pymmdrza@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -75,11 +75,11 @@ pip install --upgrade libcrypto
|
|
|
75
75
|
|
|
76
76
|
## Examples
|
|
77
77
|
|
|
78
|
-
Practical usage examples are available in the [`examples/`](examples
|
|
78
|
+
Practical usage examples are available in the [`examples/`](https://gitlab.com/0xmdrza/libcrypto/-/tree/main/examples) directory.
|
|
79
79
|
|
|
80
80
|
The Examples Cover Multi-chain Address Generation, Secure Wallet Creation, WIF import/export, Public-key-only Workflows, HD wallet Derivation, Batch CSV Generation, and Deterministic Address Test Vectors.
|
|
81
81
|
|
|
82
|
-
> See [More Details](examples/README.md) for the Full Example Guide.
|
|
82
|
+
> See [More Details](https://gitlab.com/0xmdrza/libcrypto/-/tree/main/examples/README.md) for the Full Example Guide.
|
|
83
83
|
|
|
84
84
|
---
|
|
85
85
|
|
|
@@ -45,11 +45,11 @@ pip install --upgrade libcrypto
|
|
|
45
45
|
|
|
46
46
|
## Examples
|
|
47
47
|
|
|
48
|
-
Practical usage examples are available in the [`examples/`](examples
|
|
48
|
+
Practical usage examples are available in the [`examples/`](https://gitlab.com/0xmdrza/libcrypto/-/tree/main/examples) directory.
|
|
49
49
|
|
|
50
50
|
The Examples Cover Multi-chain Address Generation, Secure Wallet Creation, WIF import/export, Public-key-only Workflows, HD wallet Derivation, Batch CSV Generation, and Deterministic Address Test Vectors.
|
|
51
51
|
|
|
52
|
-
> See [More Details](examples/README.md) for the Full Example Guide.
|
|
52
|
+
> See [More Details](https://gitlab.com/0xmdrza/libcrypto/-/tree/main/examples/README.md) for the Full Example Guide.
|
|
53
53
|
|
|
54
54
|
---
|
|
55
55
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: libcrypto
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.3
|
|
4
4
|
Summary: Pure Python cryptocurrency address generation and cryptographic utilities.
|
|
5
5
|
Author-email: Pymmdrza <pymmdrza@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -75,11 +75,11 @@ pip install --upgrade libcrypto
|
|
|
75
75
|
|
|
76
76
|
## Examples
|
|
77
77
|
|
|
78
|
-
Practical usage examples are available in the [`examples/`](examples
|
|
78
|
+
Practical usage examples are available in the [`examples/`](https://gitlab.com/0xmdrza/libcrypto/-/tree/main/examples) directory.
|
|
79
79
|
|
|
80
80
|
The Examples Cover Multi-chain Address Generation, Secure Wallet Creation, WIF import/export, Public-key-only Workflows, HD wallet Derivation, Batch CSV Generation, and Deterministic Address Test Vectors.
|
|
81
81
|
|
|
82
|
-
> See [More Details](examples/README.md) for the Full Example Guide.
|
|
82
|
+
> See [More Details](https://gitlab.com/0xmdrza/libcrypto/-/tree/main/examples/README.md) for the Full Example Guide.
|
|
83
83
|
|
|
84
84
|
---
|
|
85
85
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|