hi Bob,
Muß ich das Paßwort auf andere Art verschlüsseln? Wenn ja, wie?`
Schau mal in das Installationsverzeichnis vom Apache Win32. Da gibt es ein Programm *htpasswd.exe*
Ohne Parameter wird die Hilfe gezeigt:
Usage:
htpasswd [-cmdps] passwordfile username
htpasswd -b[cmdps] passwordfile username password
-c Create a new file.
-m Force MD5 encryption of the password.
-d Force CRYPT encryption of the password (default).
-p Do not encrypt the password (plaintext).
-s Force SHA encryption of the password.
-b Use the password from the command line rather than prompting for it.
On Windows and TPF systems the '-m' flag is used by default.
On all other systems, the '-p' flag will probably not work.
Und mit
htpasswd -c passwordfile username
erzeugst Du eine PasswortDatei mit einem md5 (default) encrypteden PW die auch unter win32 funktioniert.
Siehe auch http://i-netlab.de/article/htpasswd.html
Rolf
PS: Natürlich gibt es auch noch andere Möglichkeiten wie zum Beispiel das PERL Modul Apache::Htpasswd - Manage Unix crypt-style password file zeigt: Dieses interessante Modul bietet eine ganze Reihe von Methoden (Funktionen) zum Scripten von eigenen Password - Utilities.