if __name__ == '__main__':
thePass = "Password123!"
theSalt = "12345"
if validate_strong_password(thePass):
print(thePass, " Meets the Criteria")
result, resultingHash = gen_pass_hash(thePass, theSalt)
if __name__ == '__main__':
thePass = "Password123!"
theSalt = "12345"
if validate_strong_password(thePass):
print(thePass, " Meets the Criteria")
result, resultingHash = gen_pass_hash(thePass, theSalt)