PHP .htaccess
Ok... I was fairly sure that this was the code to get passwords to be encrypted into the DES standard so that they could be authorized by .htaccess and .htpasswds for Basic Authentication
PHP Code:
$salt = substr( $pass , 0 , 2 );
$enc_pw = crypt( $pass, $salt );
Please tell me I'm doing this wrong so I don't think I'm completley crazy....