On Mon, 12 Jun 2000, Max Shaposhnikov wrote:
����������, ����������, ���� ���� � �������� � ��������� (����� ��
[EMAIL PROTECTED])
> ������� ������� ������������
> ��������� ����� htpasswd
> �������� ��� ���� �������� - �� �������.
> Apache �������� ��� ������� � md5.
>
> �������� � SHA CRYPT plain
>
> Redhat 6.1
>
>
> =====================================================================
> If you would like to unsubscribe from this list send message to
> [EMAIL PROTECTED] with "unsubscribe oops" in message body.
> Archive is accessible on http://www.paco.net/oops/
>
Igor Khasilev |
PACO Links, [EMAIL PROTECTED] |
Index: lib.c
===================================================================
RCS file: /usr/local/cvs/oops/src/lib.c,v
retrieving revision 1.64
diff -c -r1.64 lib.c
*** lib.c 2000/05/22 17:09:36 1.64
--- lib.c 2000/06/12 14:45:09
***************
*** 2604,2610 ****
val += base64_value[k];
if (++c < 4)
continue;
! result[j++] = (char) val >> 16;
result[j++] = (val >> 8) & 0xff;
result[j++] = val & 0xff;
val = c = 0;
--- 2605,2611 ----
val += base64_value[k];
if (++c < 4)
continue;
! result[j++] = (char) (val >> 16);
result[j++] = (val >> 8) & 0xff;
result[j++] = val & 0xff;
val = c = 0;