Skip to main content

saltedmd5 is a python package for performing md5 hashing with salt.

Project description

To use Salted MD5:

from saltedmd5 import Salting
# user = Salting(<password>, <grams-of-salt>)
user_1 = Salting('mypassword', <grams-of-salt>)
user_1.seasoning()

Result:

user_1.showinfo()

{
	'password': 'mypassword',
	'salted_password': '45f6717a673f740c636479a9b7b98b9c',
	'salt': '8LG6et9315DjPuupKBpD'
}
''' check_authentication(<to-be-checked-password>) '''
user_1.check_authentication('mypassword')

Passwords matched!!
''' create_json(<name-of-file>) '''
user_1.create_json('user_1')

JSON created!!

Installation

saltedmd5 can be installed from PyPI:

pip install saltedmd5

What it is

saltedmd5 is a work based on hashlib. It aims to provide developers with a Python functionality to generate simple salted password hashing which concerns the security of user account systems.

Changes

Please refer to CHANGELOG

Getting Involved

Everybody is welcome, please feel free to get on board :)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

saltedmd5-1.0.5.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

saltedmd5-1.0.5-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page