Deleted Added
full compact
pam_set_mapped_authtok.c (91094) pam_set_mapped_authtok.c (91100)
1/*-
2 * Copyright (c) 2002 Networks Associates Technologies, Inc.
3 * All rights reserved.
4 *
5 * This software was developed for the FreeBSD Project by ThinkSec AS and
6 * NAI Labs, the Security Research Division of Network Associates, Inc.
7 * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
8 * DARPA CHATS research program.

--- 22 unchanged lines hidden (view full) ---

31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * $Id$
35 */
36
37#include <security/pam_appl.h>
38
1/*-
2 * Copyright (c) 2002 Networks Associates Technologies, Inc.
3 * All rights reserved.
4 *
5 * This software was developed for the FreeBSD Project by ThinkSec AS and
6 * NAI Labs, the Security Research Division of Network Associates, Inc.
7 * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
8 * DARPA CHATS research program.

--- 22 unchanged lines hidden (view full) ---

31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * $Id$
35 */
36
37#include <security/pam_appl.h>
38
39/*
40 * XSSO 4.2.1
41 * XSSO 6 page 62
42 *
43 * Store the password for the username supplied
44 */
45
39int
40pam_set_mapped_authtok(pam_handle_t *pamh,
41 const char *target_module_username,
42 size_t target_authtok_len,
43 unsigned char *target_module_authtok,
44 const char *target_module_type,
45 const char *target_authn_domain)
46{
47
48 return (PAM_SYSTEM_ERR);
49}
46int
47pam_set_mapped_authtok(pam_handle_t *pamh,
48 const char *target_module_username,
49 size_t target_authtok_len,
50 unsigned char *target_module_authtok,
51 const char *target_module_type,
52 const char *target_authn_domain)
53{
54
55 return (PAM_SYSTEM_ERR);
56}
57
58/*
59 * NODOC
60 */