~ubuntu-branches/ubuntu/dapper/freeradius/dapper-updates

« back to all changes in this revision

Viewing changes to src/modules/rlm_cram/rlm_cram.c

  • Committer: Bazaar Package Importer
  • Author(s): Paul Hampson
  • Date: 2004-12-29 20:19:42 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041229201942-uj2e95la965uthc7
Tags: 1.0.1-2
* freeradius-dialupadmin Suggests php4-mysql | php4-pgsql
   Closes: #279419
* Added a two-second pause to restart in init.d script
   Closes: #262635
* FreeRADIUS module packages now depend on the same source
  version of the main FreeRADIUS package.
   Closes: #284353
* FreeRADIUS-dialupadmin's default paths in admin.conf are
  now correct.
   Closes: #280942
* FreeRADIUS-dialupadmin's help.php3 can now find README.
   Closes: #280941
* Fixes stolen from 1.0.2 CVS:
  - Bug fix to make udpfromto code work
  - radrelay shouldn't dump core if it can't read a VP from the
    detail file.
  - Only initialize the random pool once.
  - In rlm_sql, don't escape characters twice.
  - In rlm_ldap, only claim Auth-Type if a plain text password is present.
  - Locking fixes in threading code
  - Fix building on gcc-4.0 by not trying to access static auth_port from
    other files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * rlm_cram.c   
 
2
 * rlm_cram.c
3
3
 *
4
 
 * Version:     $Id: rlm_cram.c,v 1.2 2002/08/24 16:54:56 aland Exp $
 
4
 * Version:     $Id: rlm_cram.c,v 1.3 2004/02/26 19:04:28 aland Exp $
5
5
 *
6
6
 *   This program is free software; you can redistribute it and/or modify
7
7
 *   it under the terms of the GNU General Public License as published by
19
19
 *
20
20
 * Copyright 2002  The FreeRADIUS server project
21
21
 */
22
 
 
 
22
 
23
23
/*
24
24
 *   CRAM mail authentication (APOP, CRAM-MD5)
25
25
 *   by 3APA3A
39
39
 *      for APOP/CRAM-MD5/CRAM-MD4, 20 octets for CRAM-SHA1
40
40
 *
41
41
 *   (c) 2002 by SANDY (http://www.sandy.ru/) under GPL
42
 
 */ 
 
42
 */
43
43
 
44
44
#include        "autoconf.h"
45
45
#include        "libradius.h"