The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package CGI::Application::Plugin::Authentication::Driver::Filter::lc;
$CGI::Application::Plugin::Authentication::Driver::Filter::lc::VERSION = '0.23';
use strict;
use warnings;

sub check {
    return ( lc $_[2] eq $_[3] ) ? 1 : 0;
}

sub filter {
    return lc( $_[2] );
}

1;
__END__


=head1 NAME

CGI::Application::Plugin::Authentication::Driver::Filter::lc - Lowercase Filter

=head1 METHODS


=head2 filter ( undef, $string )

This simply lowercases the string and returns it

 my $filtered = $class->filter(undef, 'FOOBAR'); # foobar


=head2 check ( undef, $string, $compare )

This will lowercase C<$string> and compare it against C<$compare>
and return true or false.

 if ($class->check(undef, 'FOOBAR', 'foobar')) {
     # they match
 }


=head1 SEE ALSO

L<CGI::Application::Plugin::Authentication::Driver>, perl(1)


=head1 AUTHOR

Cees Hek <ceeshek@gmail.com>


=head1 LICENCE AND COPYRIGHT

Copyright (c) 2005, SiteSuite. All rights reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

=cut