view Lib/IMPL/Security/Auth.pm @ 51:a1498298d3ee

Security in progress
author wizard@linux-odin.local
date Mon, 01 Mar 2010 17:25:36 +0300 (2010-03-01)
parents
children 15d720913562
line wrap: on
line source
package IMPL::Security::Auth;

use constant {
	SUCCESS => 1,
	INCOMPLETE => 2,
	FAIL => 3	
};

use base qw(Exporter);

our @EXPORT_OK = qw(&SUCCESS &INCOMPLETE &FAI);
our %EXPORT_TAGS = (Const => [qw(&SUCCESS &INCOMPLETE &FAI)]);

1;

__END__

=pod

=head1 DESCRIPTION

�������� ������ ��� ����������� �������������.

������� ����������� ������� �� ��������� �����

1. ������ ���������� �� ������ ������ ��� ����������� � ���������� �����������.
2. ������ �������� ������, ������� ������ �������������� ��� �������,
���������� ��������������
3. ������ �������������� ���������� ���������, �� ������ ��������
���� ����������� �������� ������������, ���� ������������ ������� ��������������

���������� �������� ������������ �������� ������ ��� ������� � ������ ��������������,
� ������ ���������� ���������� �������� ������, �������� �������������, ��������� �����
� �.�. 

=cut