View Single Post
  #10  
Old 03-12-2015, 12:42
zeytunak zeytunak is offline
Friend
 
Join Date: Feb 2015
Posts: 81
Rept. Given: 0
Rept. Rcvd 17 Times in 11 Posts
Thanks Given: 93
Thanks Rcvd at 43 Times in 24 Posts
zeytunak Reputation: 17
ascii code for D = 44h
ascii code for C = 43h +
------
87 saved

ascii code for 2 = 32h
ascii code for 4 = 34h +
--------
66 saved

in md5 string we have 0 , 1 , 2 , 3 , ..., D , E , F ( if only using uppercase )
in hex 0x30 , 0x31 , 0x32 , 0x33 , .... , 0x44 , 0x45 , 0x46

Minimum = Ascii(0) + Ascii(0) = 0x30 + 0x30 = 0x60
Maximum = Ascii(F) + Ascii(F) = 0x46 + 0x46 = 0x8C

0x60 < final saved hash < 0x8c
Reply With Quote
The Following User Says Thank You to zeytunak For This Useful Post:
Indigo (07-19-2019)