in reply to What kind of encryption is this?
When I tried crypting the password with the salt set to 1y, I got 1yl9nR3IDmrqY. So it's probably not crypted.
Could it be base64? Basic HTTP authentication uses Base64 encoding to obscure password information. Of course this doesn't seem work either. I tried to use this script to unencode the string. No luck, I got a bunch of high ascii junk.
Mostly useless, huh? Are you sure that you haven't got another plaintext password there?
Update:
crazyinsomniac, which assumption? I guessed the salt was 1y because the standard format for crypted output is two characters of salt, followed by 11 characters of hash (SSXXXXXXXXXXX). The mystery string is 1yIM9F71yIM9v, which just happens to be 13 chars long. By making the assumption and testing it, I was able to determine that the mystery string is not a crypted form of the plaintext password we were provided.
Assumptions have their uses, when they are recognized as such. The problem with assumptions comes from not knowing what your assumptions are. Ask any mathematician.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(crazyinsomniac:don't assume) Re: (2) What kind of encryption is this?
by crazyinsomniac (Prior) on Mar 20, 2001 at 02:38 UTC |