The password generator can return a number of different encryptions for the exact same password. They all work. Our generator uses a random seed for extra security. Once generated, you'll need to add it, along with any username to your .htpasswd file in the following format :
username:password
For example, if you want to add a new user to your database whose username is "magic" and password is "mypass". Enter "mypass" without the quotes, in the form. In your .htpasswd file you would then add :
magic:US9F6XDdweuTc
where the username and password are separated by a colon (:) and US9F6XDdweuTc is the encrypted version of "mypass".