libcrypto 1.0.4__tar.gz → 1.0.5__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.0.4/src/libcrypto.egg-info → libcrypto-1.0.5}/PKG-INFO +4 -1
- {libcrypto-1.0.4 → libcrypto-1.0.5}/README.md +3 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/setup.py +1 -1
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto/__init__.py +1 -1
- {libcrypto-1.0.4 → libcrypto-1.0.5/src/libcrypto.egg-info}/PKG-INFO +4 -1
- {libcrypto-1.0.4 → libcrypto-1.0.5}/LICENSE +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/pyproject.toml +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/setup.cfg +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto/_version.py +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto/addresses.py +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto/bip32.py +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto/cli.py +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto/constants.py +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto/formats.py +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto/hash.py +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto/keys.py +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto/mnemonic.py +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto/secp256k1.py +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto/wallet.py +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto.egg-info/SOURCES.txt +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto.egg-info/dependency_links.txt +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto.egg-info/entry_points.txt +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto.egg-info/not-zip-safe +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto.egg-info/requires.txt +0 -0
- {libcrypto-1.0.4 → libcrypto-1.0.5}/src/libcrypto.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: libcrypto
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: A professional library For Cryptography and Cryptocurrencies in Python.
|
|
5
5
|
Home-page: https://github.com/pymmdrza/libcrypto
|
|
6
6
|
Author: Mmdrza
|
|
@@ -114,6 +114,9 @@ print(f"Bitcoin (SegWit) Address: {btc_address}")
|
|
|
114
114
|
print(f"Bitcoin Cash Address: {bch_address}")
|
|
115
115
|
```
|
|
116
116
|
|
|
117
|
+

|
|
118
|
+
|
|
119
|
+
|
|
117
120
|
## Quick Start (Command-Line Interface)
|
|
118
121
|
|
|
119
122
|
```bash
|
|
@@ -81,6 +81,9 @@ print(f"Bitcoin (SegWit) Address: {btc_address}")
|
|
|
81
81
|
print(f"Bitcoin Cash Address: {bch_address}")
|
|
82
82
|
```
|
|
83
83
|
|
|
84
|
+

|
|
85
|
+
|
|
86
|
+
|
|
84
87
|
## Quick Start (Command-Line Interface)
|
|
85
88
|
|
|
86
89
|
```bash
|
|
@@ -17,7 +17,7 @@ def get_long_description():
|
|
|
17
17
|
|
|
18
18
|
setup(
|
|
19
19
|
name="libcrypto",
|
|
20
|
-
version="1.0.
|
|
20
|
+
version="1.0.5",
|
|
21
21
|
description="Comprehensive cryptocurrency wallet library with BIP39/BIP32 support using only pycryptodome",
|
|
22
22
|
long_description=get_long_description(),
|
|
23
23
|
long_description_content_type="text/markdown",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: libcrypto
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: A professional library For Cryptography and Cryptocurrencies in Python.
|
|
5
5
|
Home-page: https://github.com/pymmdrza/libcrypto
|
|
6
6
|
Author: Mmdrza
|
|
@@ -114,6 +114,9 @@ print(f"Bitcoin (SegWit) Address: {btc_address}")
|
|
|
114
114
|
print(f"Bitcoin Cash Address: {bch_address}")
|
|
115
115
|
```
|
|
116
116
|
|
|
117
|
+

|
|
118
|
+
|
|
119
|
+
|
|
117
120
|
## Quick Start (Command-Line Interface)
|
|
118
121
|
|
|
119
122
|
```bash
|
|
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
|