thesalt_var

PHOTO EMBED

Wed Oct 19 2022 07:23:25 GMT+0000 (Coordinated Universal Time)

Saved by @Bird #python

if __name__ == '__main__':

    thePass = "Password123!"
    theSalt = "12345"

    if validate_strong_password(thePass):
        print(thePass, " Meets the Criteria")
        result, resultingHash = gen_pass_hash(thePass, theSalt)
content_copyCOPY