python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Hash Password in XML - C#
I'm struggling with hashing and salting a password. I am creating an XML file which stores a person's name, card number and password. I then need to display the information from the xml file back to t...
Jimmy293288
Votes: 0
Answers: 1
Invalid salt error when comparing plain text and hash with bcrypt
I'm trying to compare a saved hash and a user input in python using bcrypt. My code:
while passnotcorrect == True:
password = input("Enter password: ")
password = pas...
Thomas
Votes: 0
Answers: 1
Bcrypt ValueError: Invalid salt when using custom salt
I'm working on a project where hashing is required. The problem is that I want to create a custom hash (generated with a program that would add non-english characters and symbols). When testing this w...
Thomas
Votes: 0
Answers: 1
I want to encrypt an entire password column in a table on a mysql database, using the salted hash method or aes encrypt method, how do i go about it?
That is the image above, i need the final piece to complete the project. Can anyone help me with the code to encrypt the entire password column, using aes_encrypt method or salted hash method?
I tried...
Chijioke Chidiebube Iwuchukwu
Votes: 0
Answers: 0