View Single Post
  #4  
Old 12-22-2011, 04:24
chessgod101's Avatar
chessgod101 chessgod101 is offline
Co-Administrator
 
Join Date: Jan 2011
Location: United States
Posts: 535
Rept. Given: 2,221
Rept. Rcvd 691 Times in 219 Posts
Thanks Given: 703
Thanks Rcvd at 939 Times in 186 Posts
chessgod101 Reputation: 500-699 chessgod101 Reputation: 500-699 chessgod101 Reputation: 500-699 chessgod101 Reputation: 500-699 chessgod101 Reputation: 500-699 chessgod101 Reputation: 500-699
Indeed there many hashing utilities available online. However, none seem to support the hashing of a string that has been encoded in Unicode. For example, an ascii string in hex looks like this:
Code:
hello= 68 65 6C 6C 6F
whereas a Unicode string looks like this:
Code:
hello= 68 00 65 00 6C 00 6C 00 6F 00
When they are hashed, naturally they will result in different values. Hashing a Unicode encoded string will increase the security of the hash since most hash/password cracking utilities do not support Unicode encoding.
__________________
"As the island of our knowledge grows, so does the shore of our ignorance." John Wheeler
Reply With Quote