You are here

function _stored_passwords_help in Secure Site 6.2

Same name and namespace in other branches
  1. 8 digest_md5/stored_passwords.php \_stored_passwords_help()
  2. 7.2 digest_md5/stored_passwords.php \_stored_passwords_help()

Display help message.

1 call to _stored_passwords_help()
stored_passwords.php in digest_md5/stored_passwords.php
This script manages stored passwords. Only the root user should have access to this script and the database used to store passwords.

File

digest_md5/stored_passwords.php, line 126
This script manages stored passwords. Only the root user should have access to this script and the database used to store passwords.

Code

function _stored_passwords_help() {
  exit('Usage: stored_passwords.php [OPTIONS]...' . "\n" . "\n" . 'Options:' . "\n" . '  username=STRING    User identity. When not given, the delete op removes all' . "\n" . '                     users from the realm.' . "\n" . '  realm=STRING       Realm. Defaults to hostname.' . "\n" . '  password=STRING    User password.' . "\n" . '  op=STRING          Create or delete. By default, an existing user identity' . "\n" . '                     will be updated.' . "\n" . "\n");
}