Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
DES 7bit characters
11-30-2011, 08:57 PM
Post: #1
DES 7bit characters
How do the characters of a password get clipped or altered to conform to the 7bit input for DES characters? When i use maskprocessor with -1=?l?u?d?s?D?F?R ?1 i get 143 different characters, yet if DES is only using 7bits then there is a maximum 128 possible options.
I would like to create a rule to append every possible character to the end of a wordlist, without duplicates.
Find all posts by this user
Quote this message in a reply
12-01-2011, 11:15 AM
Post: #2
RE: DES 7bit characters
(11-30-2011 08:57 PM)PHloGiSTo Wrote:  How do the characters of a password get clipped or altered to conform to the 7bit input for DES characters? When i use maskprocessor with -1=?l?u?d?s?D?F?R ?1 i get 143 different characters, yet if DES is only using 7bits then there is a maximum 128 possible options.

DES algorithm shifts each char 1 bit to the left (8 - 1 = 7). For example, german รถ (oe) encoded as 8 bit iso-8859-1 is 0xf6 (11110110), shifting it one to the left results in (11101100), which is the same result as the input 0x76 would result. in other words its converted to "v".

(11-30-2011 08:57 PM)PHloGiSTo Wrote:  I would like to create a rule to append every possible character to the end of a wordlist, without duplicates.

how is this related to 7bit keys?
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply