Gere entradas htpasswd para autenticação HTTP Basic do Apache. Crie valores para arquivos de senha e diretórios protegidos.
What's htpasswd?
htpasswd is a command tool for the open source http server apace httpd to generate a password file for basic authentication at http.
What difference does it make to encryption?
MD5:Use MD5 encryption passwords. On Windows, Netware and TPF, this is the default encryption.
crypt:Use crypt() encryption passwords. This is default on platforms other than Windows, Netware and TPF. While it can be supported on all platforms by Htpasswd, it is not supported on Windows, Netware and TPF by the httpd server.
SHA:Use SHA encryption password. It is designed to facilitate transfer or transplantation to Netscape (ldif) using LDAP Directory Interchange Format.
plain:Do not encrypt, use a password for pure text. Although this password can be created on all platforms, the httpd background supports the password for pure text only on Windows, Netware and TPF.
Why did you make it online?
If we do not use apache servers, for example, using nginx, it may not be possible to generate password files without this command line tool on hand, with online versions that are easily accessible to server administrators.