Re: encryption
- Posted by isaac <isaaca at MINDSPRING.COM> Dec 11, 1998
- 525 views
>as such, I am in need of person's interested in >attempting to take an encrypted string (sequence of >char) and determine what the password is, from that string... The mark of a good encryption algorythm is that it can't be easily cracked without the password, *even if the attacker knows the algorythm* (which will eventually be discovered anyway). So a better test would be to provide the encrypt function and see if anyone can come up with another function which would either crack the code or narrow down the list of possible passwords to the point where a brute-force attack (run through all the passwords till one works) might be feasible. I know very little when it comes to encryption algorythm design, but I recommend the newsgroup sci.crypt A while ago I came up with an algorythm and posted it, but was answered with a humbling cryptoanalysis explaining just how easily it could be cracked. good luck isaac