WiKID Strong Authentication System 3.0.8 (Blackberry Wireless Token branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News WiKID Strong Authentication System 3.0.8 (Blackberry Wireless Token branch)
# 1  
Old 01-16-2009
WiKID Strong Authentication System 3.0.8 (Blackberry Wireless Token branch)

Image The WiKID Strong Authentication System is a highly scalable, secure two-factor authentication system. It is simple to implement and maintain, allows users to be validated automatically, requires no hardware tokens, has a simple API for application support (via Ruby, PHP, Java, COM, Python, etc.), supports multiple domains, and supports replication for fault tolerance and scalability. It also supports mutual /host and transaction authentication, wireless tokens only domains, locked tokens (to your PC), anti-keystroke logger keypad PIN entry, etc. License: Other/Proprietary License with Free Trial Changes:
The Blackberry software token now sends the device PIN to the server to aid in initial user validation. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Catalyst::Plugin::Authentication::Credential::NoPasswordUser)Contributed Perl DocumenCatalyst::Plugin::Authentication::Credential::NoPassword(3pm)

NAME
Catalyst::Authentication::Credential::NoPassword - Authenticate a user without a password. SYNOPSIS
use Catalyst qw/ Authentication /; package MyApp::Controller::Auth; sub login_as_another_user : Local { my ($self, $c) = @_; if ($c->user_exists() and $c->user->username() eq 'root') { $c->authenticate( {id => c->req->params->{user_id}}, 'nopassword' ); } } DESCRIPTION
This authentication credential checker takes authentication information (most often a username) and retrieves the user from the store. No validation of any credentials is done. This is intended for administrative backdoors, SAML logins and so on when you have identified the new user by other means. CONFIGURATION
# example <Plugin::Authentication> <nopassword> <credential> class = NoPassword </credential> <store> class = DBIx::Class user_model = DB::User role_relation = roles role_field = name </store> </nopassword> </Plugin::Authentication> METHODS
authenticate ( $c, $realm, $authinfo ) Try to log a user in. perl v5.14.2 2012-04-14 Catalyst::Plugin::Authentication::Credential::NoPassword(3pm)