rename from x99 to otp to reflect broader scope
[freeradius.git] / src / modules / rlm_otp / otp_site.c
1 /*
2  * otp_site.c
3  * $Id$
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 Frank Cusack
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$";
42
43
44 int
45 otp_challenge_transform(
46 #ifdef __GNUC__
47 __attribute__ ((unused))
48 #endif
49                         const char *username,
50                         char challenge[OTP_MAX_CHALLENGE_LEN + 1])
51 {
52     (void) strcpy(challenge, "DISABLED");
53     return 0;
54 }
55