Deleted Added
full compact
pam_get_mapped_authtok.c (91094) pam_get_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 48
42 *
43 * Get mapped password for the user
44 */
45
39int
40pam_get_mapped_authtok(pam_handle_t *pamh,
41 const char *target_module_username,
42 const char *target_module_type,
43 const char *target_authn_domain,
44 size_t *target_authtok_len,
45 unsigned char **target_module_authtok)
46{
47
48 return (PAM_SYSTEM_ERR);
49}
46int
47pam_get_mapped_authtok(pam_handle_t *pamh,
48 const char *target_module_username,
49 const char *target_module_type,
50 const char *target_authn_domain,
51 size_t *target_authtok_len,
52 unsigned char **target_module_authtok)
53{
54
55 return (PAM_SYSTEM_ERR);
56}
57
58/*
59 * NODOC
60 */