Thats cool it works a treat do you know what kind of encryption this is like is it md5 or whatever
It's the old unix 'crypt' program's salted hash. The 'salt' value is V2, and is supposed to be a random 2 number/letter sequence. Anything could be used for the salt. For instance, the following are all encrypted versions of 'dreambox' as a password, just with different salts.
Code:
aaGyIeHs1g3l2
bb0ylH9fJtbEY
ccmihTh3uPajo
11dA/2q3iswZc
22VqLJ7yxmoaQ
33Eiq7UCE.45A
It's cryptographically weak (actually based on the Enigma machine's algorithm) and only supports passwords up to 8 characters, so has been replaced on modern unix machines by md5 or sha hashes for more security.
See here
Bookmarks