pam_sm_get_mapped_authtok.c revision 91100
191100Sdes/*-
291100Sdes * Copyright (c) 2002 Networks Associates Technologies, Inc.
391100Sdes * All rights reserved.
491100Sdes *
591100Sdes * This software was developed for the FreeBSD Project by ThinkSec AS and
691100Sdes * NAI Labs, the Security Research Division of Network Associates, Inc.
791100Sdes * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
891100Sdes * DARPA CHATS research program.
991100Sdes *
1091100Sdes * Redistribution and use in source and binary forms, with or without
1191100Sdes * modification, are permitted provided that the following conditions
1291100Sdes * are met:
1391100Sdes * 1. Redistributions of source code must retain the above copyright
1491100Sdes *    notice, this list of conditions and the following disclaimer.
1591100Sdes * 2. Redistributions in binary form must reproduce the above copyright
1691100Sdes *    notice, this list of conditions and the following disclaimer in the
1791100Sdes *    documentation and/or other materials provided with the distribution.
1891100Sdes * 3. The name of the author may not be used to endorse or promote
1991100Sdes *    products derived from this software without specific prior written
2091100Sdes *    permission.
2191100Sdes *
2291100Sdes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
2391100Sdes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2491100Sdes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2591100Sdes * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2691100Sdes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2791100Sdes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2891100Sdes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2991100Sdes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3091100Sdes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3191100Sdes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3291100Sdes * SUCH DAMAGE.
3391100Sdes *
3491100Sdes * $Id$
3591100Sdes */
3691100Sdes
3791100Sdes#include <sys/param.h>
3891100Sdes
3991100Sdes#include <security/pam_appl.h>
4091100Sdes#include <security/pam_modules.h>
4191100Sdes
4291100Sdes/*
4391100Sdes * XSSO 4.2.2
4491100Sdes * XSSO 6 page 77
4591100Sdes *
4691100Sdes * Service module implementation for pam_get_mapped_authtok
4791100Sdes */
4891100Sdes
4991100Sdesint
5091100Sdespam_sm_get_mapped_authtok(pam_handle_t *pamh,
5191100Sdes	char *target_module_username,
5291100Sdes	char *target_module_type,
5391100Sdes	char *target_authn_domain,
5491100Sdes	size_t *target_authtok_len,
5591100Sdes	unsigned char **target_module_authtok,
5691100Sdes	int argc,
5791100Sdes	char *argv)
5891100Sdes{
5991100Sdes
6091100Sdes	return (PAM_SYSTEM_ERR);
6191100Sdes}
6291100Sdes
6391100Sdes/*
6491100Sdes * NODOC
6591100Sdes */
66