1 .\" $NetBSD: krb5_verify_init_creds.3,v 1.1.1.2 2011/04/14 14:09:23 elric Exp $
3 .\" Copyright (c) 2003 - 2006 Kungliga Tekniska Högskolan
4 .\" (Royal Institute of Technology, Stockholm, Sweden).
5 .\" All rights reserved.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\" notice, this list of conditions and the following disclaimer in the
16 .\" documentation and/or other materials provided with the distribution.
18 .\" 3. Neither the name of the Institute nor the names of its contributors
19 .\" may be used to endorse or promote products derived from this software
20 .\" without specific prior written permission.
22 .\" THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
23 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
26 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 .Dt KRB5_VERIFY_INIT_CREDS 3
40 .Nm krb5_verify_init_creds_opt_init ,
41 .Nm krb5_verify_init_creds_opt_set_ap_req_nofail ,
42 .Nm krb5_verify_init_creds
43 .Nd "verifies a credential cache is correct by using a local keytab"
45 Kerberos 5 Library (libkrb5, -lkrb5)
49 .Li "struct krb5_verify_init_creds_opt;"
51 .Fo krb5_verify_init_creds_opt_init
52 .Fa "krb5_verify_init_creds_opt *options"
55 .Fo krb5_verify_init_creds_opt_set_ap_req_nofail
56 .Fa "krb5_verify_init_creds_opt *options"
57 .Fa "int ap_req_nofail"
60 .Fo krb5_verify_init_creds
61 .Fa "krb5_context context"
62 .Fa "krb5_creds *creds"
63 .Fa "krb5_principal ap_req_server"
64 .Fa "krb5_ccache *ccache"
65 .Fa "krb5_verify_init_creds_opt *options"
69 .Nm krb5_verify_init_creds
70 function verifies the initial tickets with the local keytab to make
71 sure the response of the KDC was spoof-ed.
73 .Nm krb5_verify_init_creds
76 from the local keytab, if
78 is passed in, the code will guess the local hostname and use that to
79 form host/hostname/GUESSED-REALM-FOR-HOSTNAME.
81 is the credential that
82 .Nm krb5_verify_init_creds
87 .Fn krb5_verify_init_creds
88 stores all credentials it fetched from the KDC there, otherwise it
89 will use a memory credential cache that is destroyed when done.
91 .Fn krb5_verify_init_creds_opt_init
92 cleans the the structure, must be used before trying to pass it in to
93 .Fn krb5_verify_init_creds .
95 .Fn krb5_verify_init_creds_opt_set_ap_req_nofail
96 controls controls the behavior if
98 doesn't exists in the local keytab or in the KDC's database, if it's
99 true, the error will be ignored. Note that this use is possible
103 .Xr krb5_get_init_creds 3 ,
104 .Xr krb5_verify_user 3 ,