You are here

function services_keyauth_authentication_info in Services 6.2

Same name and namespace in other branches
  1. 7 auth/services_keyauth/services_keyauth.module \services_keyauth_authentication_info()

Implementation of hook_authentication_info().

File

auth/services_keyauth/services_keyauth.module, line 27
Provides a key based validation system.

Code

function services_keyauth_authentication_info() {
  return array(
    'file' => 'services_keyauth.inc',
    'title' => t('Key authentication'),
    'description' => t('The default key-based authentication'),
    'security_settings' => '_services_keyauth_security_settings',
    'security_settings_validate' => '_services_keyauth_security_settings_validate',
    'security_settings_submit' => '_services_keyauth_security_settings_submit',
    'alter_methods' => '_services_keyauth_alter_methods',
    'alter_browse_form' => '_services_keyauth_alter_browse_form',
    'alter_browse_form_submit' => '_services_keyauth_alter_browse_form_submit',
    'authenticate_call' => '_services_keyauth_authenticate_call',
  );
}