~ubuntu-branches/ubuntu/natty/freeradius/natty-updates

« back to all changes in this revision

Viewing changes to src/modules/rlm_otp/otp_site.c

  • Committer: Bazaar Package Importer
  • Author(s): Paul Hampson
  • Date: 2006-01-15 13:34:13 UTC
  • mto: (3.1.3 dapper) (4.1.3 sid) (1.1.14 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20060115133413-zo1dslttvdoalqym
Tags: upstream-1.1.0
ImportĀ upstreamĀ versionĀ 1.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * otp_site.c
 
3
 * $Id: otp_site.c,v 1.5.2.1 2005/12/08 01:30:52 fcusack Exp $
 
4
 *
 
5
 *   This program is free software; you can redistribute it and/or modify
 
6
 *   it under the terms of the GNU General Public License as published by
 
7
 *   the Free Software Foundation; either version 2 of the License, or
 
8
 *   (at your option) any later version.
 
9
 *
 
10
 *   This program is distributed in the hope that it will be useful,
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *   GNU General Public License for more details.
 
14
 *
 
15
 *   You should have received a copy of the GNU General Public License
 
16
 *   along with this program; if not, write to the Free Software
 
17
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 *
 
19
 * Copyright 2001,2002  Google, Inc.
 
20
 * Copyright 2005 TRI-D Systems, Inc.
 
21
 */
 
22
 
 
23
/*
 
24
 * IMPORTANT  IMPORTANT  IMPORTANT  IMPORTANT  IMPORTANT  IMPORTANT
 
25
 *
 
26
 * In order to safely use challenge/response (async) mode, you must
 
27
 * - implement a site-specific transform of the challenge, and/or
 
28
 * - only allow async mode from secure locations.
 
29
 *
 
30
 * Note that you cannot easily just disallow async mode completely
 
31
 * as you typically must provide a way to resynchronize the token.
 
32
 *
 
33
 * Please read the accompanying docs for more info.
 
34
 *
 
35
 * IMPORTANT  IMPORTANT  IMPORTANT  IMPORTANT  IMPORTANT  IMPORTANT
 
36
 */
 
37
 
 
38
#include "otp.h"
 
39
#include <string.h>
 
40
 
 
41
static const char rcsid[] = "$Id: otp_site.c,v 1.5.2.1 2005/12/08 01:30:52 fcusack Exp $";
 
42
 
 
43
 
 
44
ssize_t
 
45
otp_challenge_transform(
 
46
#ifdef __GNUC__
 
47
__attribute__ ((unused))
 
48
#endif
 
49
                        const char *username,
 
50
                        unsigned char challenge[OTP_MAX_CHALLENGE_LEN],
 
51
                        size_t clen)
 
52
{
 
53
  unsigned i;
 
54
 
 
55
  for (i = 0; i < clen; ++clen)
 
56
    challenge[i] = '\0';
 
57
 
 
58
  return clen;
 
59
}