. require_once('../inc/util_ops.inc'); require_once("../inc/account_ownership.inc"); admin_page_head("Account Ownership Keys"); if (!file_exists($account_ownership_private_key_file_path)) { echo "
The account ownership private key '" . $account_ownership_private_key_file_name . "' doesn't exist. Please run the 'generate_account_ownership_keys.php' script from the command line in the BOINC web server ops directory.
"; } else { echo "The account ownership private key '" . $account_ownership_private_key_file_name . "' exists.
"; } if (!file_exists($account_ownership_public_key_file_path)) { echo "The account ownership public key '" . $account_ownership_public_key_file_name . "' doesn't exist. Please run the 'generate_account_ownership_keys.php' script from the command line in the BOINC web server ops directory.
"; } else { echo "The account ownership public key '" . $account_ownership_public_key_file_name . "' exists.
"; } echo "For more info see the related wiki page: ProofOfOwnership
"; admin_page_tail(); ?>