Linked Questions

-10 votes
1 answer
6k views

I am encrypting(hashing) user login passwords using HMACSHA512 using (PasswordToHash(_salt, passwordText, iterations)) and stored in database. I would like to know how to decrypt the passwords.
Suresh Sankar's user avatar
-4 votes
1 answer
2k views

MVC 5 >> convert hash password to readable text. Sample : HashPasword = AMVicVYXq/Gnj+gJ9QMThNZt84TJZwCIIUdFA3upr+wyMZUu4maPpkXiJhbZ5djwgw== should be convert to 123456
Milli P's user avatar
  • 17
0 votes
1 answer
1k views

i'm working with my sign up module. I'm going to encrypt the password that i'm going to enter during sign up module using sha1() method in php and store it in mysql database. During the log in process,...
Jerome Morcilla Vergara's user avatar
0 votes
0 answers
473 views

I am running an integrity check on a MySQL database backup that is used on Laravel version 5.7. And I would like to know how to decode the password on the SQL. So far I have tried to decode the MySQL ...
ipegasus's user avatar
  • 15.3k
1 vote
0 answers
414 views

I'm using hash_pbkdf2() algorithm to derive the Encryption Key from the user's password, i'm doing like this: $salt = random_bytes(16); $interactions = 250000; $size = 256; $encryptionKey = ...
Renato Gonçalves's user avatar
0 votes
0 answers
210 views

I have written a controller ,In which I encrypted the password using BCryptPasswordEncoder like following public void setPassword(String password) { BCryptPasswordEncoder passwordEncoder = new ...
Md Aslam's user avatar
  • 1,426
1 vote
1 answer
75 views

i have a question about the use of hashing: Why shouldn't I have all the Data I insert in the Database hashed instead of only hashing the password? Wouldn't it be more secure to hash all values(emails ...
felixi1183's user avatar
0 votes
0 answers
83 views

I have an encrypted string and I wan't to know " HOW IT IS ENCRYPTED ? " I know the flowing: The length of it is 34. It is based on IP address. It looks like base64 or Hex string. I also know the ...
Alexander Jones's user avatar
0 votes
0 answers
41 views

I want to store sensitive user data in a database. This contains information like: account balance, e-mail for bank etc. I am now storing the account balance as decimal, the e-mail as text and the ...
Hans Vis's user avatar
1340 votes
11 answers
495k views

Every now and then I hear the advice "Use bcrypt for storing passwords in PHP, bcrypt rules". But what is bcrypt? PHP doesn't offer any such functions, Wikipedia babbles about a file-encryption ...
Vilx-'s user avatar
  • 107k
713 votes
17 answers
261k views

What's the difference in web applications? In short, please. I see the abbreviation "auth" a lot. Does it stand for auth-entication or auth-orization? Or both?
daGrevis's user avatar
  • 21.4k
139 votes
16 answers
367k views

I am trying to create an hashed password for Laravel. Now someone told me to use Laravel hash helper but I can't seem to find it or I'm looking in the wrong direction. How do I create a laravel ...
Graham's user avatar
  • 1,960
147 votes
13 answers
77k views

My understanding is that a hash code and checksum are similar things - a numeric value, computed for a block of data, that is relatively unique. i.e. The probability of two blocks of data yielding ...
Richard Ev's user avatar
  • 54.3k
73 votes
5 answers
123k views

I have some string and I want to hash it with the SHA-256 hash function using C#. I want something like this: string hashString = sha256_hash("samplestring"); Is there something built into the ...
Dariush Jafari's user avatar
38 votes
8 answers
48k views

I read the Wikipedia article about md5 hashes but I still can't understand how a hash can't be "reconstituted" back to the original text. Could someone explain to someone who knows very little about ...
user94154's user avatar
  • 16.6k

15 30 50 per page
1
2 3 4 5
8