Update 'README.md'

This commit is contained in:
Ze'ev Schurmann 2024-01-05 02:24:26 +02:00
parent 4a452370c3
commit 2647fc16cd
1 changed files with 4 additions and 0 deletions

View File

@ -41,6 +41,10 @@ This is optional. By default you will get a hash string followed by a new line.
PBKDF2 is used in many applications where a password needs to be stored for future verification. Unlike just using a straight Hashing Algorithm, PBKDF2 uses a "salt" along side the password, and rehashes repeatedly according to the number of "iterations". PBKDF2 is used in many applications where a password needs to be stored for future verification. Unlike just using a straight Hashing Algorithm, PBKDF2 uses a "salt" along side the password, and rehashes repeatedly according to the number of "iterations".
# Why did I write this script?
I needed to be able to write passwords to MySQL/MariaDB/SQLite databases from the commandline. I couldn't find a native way to create the hash, and doing it in pure Bash took forever, so I eventually found a way to do it quickly by embedding Python code in the script.
# NOTE: # NOTE:
This script requires Python3 which as it's own license. Please visit https://github.com/python/cpython for more information. This script requires Python3 which as it's own license. Please visit https://github.com/python/cpython for more information.