No empty .Rs/.Re
[netbsd-mini2440.git] / crypto / dist / heimdal / lib / krb5 / krb5_creds.3
blob7339c52bb8783cc59de6581129daba179409dac2
1 .\" Copyright (c) 2004, 2006 Kungliga Tekniska Högskolan
2 .\" (Royal Institute of Technology, Stockholm, Sweden).
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\"
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\"
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\"
16 .\" 3. Neither the name of the Institute nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\" $Heimdal: krb5_creds.3 17383 2006-05-01 07:13:03Z lha $
33 .\" $NetBSD$
34 .\"
35 .Dd May  1, 2006
36 .Dt KRB5_CREDS 3
37 .Os
38 .Sh NAME
39 .Nm krb5_creds ,
40 .Nm krb5_copy_creds ,
41 .Nm krb5_copy_creds_contents ,
42 .Nm krb5_free_creds ,
43 .Nm krb5_free_cred_contents
44 .Nd Kerberos 5 credential handling functions
45 .Sh LIBRARY
46 Kerberos 5 Library (libkrb5, -lkrb5)
47 .Sh SYNOPSIS
48 .In krb5/krb5.h
49 .Ft krb5_error_code
50 .Fo krb5_copy_creds
51 .Fa "krb5_context context"
52 .Fa "const krb5_creds *incred"
53 .Fa "krb5_creds **outcred"
54 .Fc
55 .Ft krb5_error_code
56 .Fo krb5_copy_creds_contents
57 .Fa "krb5_context context"
58 .Fa "const krb5_creds *incred"
59 .Fa "krb5_creds *outcred"
60 .Fc
61 .Ft krb5_error_code
62 .Fo krb5_free_creds
63 .Fa "krb5_context context"
64 .Fa "krb5_creds *outcred"
65 .Fc
66 .Ft krb5_error_code
67 .Fo krb5_free_cred_contents
68 .Fa "krb5_context context"
69 .Fa "krb5_creds *cred"
70 .Fc
71 .Sh DESCRIPTION
72 .Vt krb5_creds
73 holds Kerberos credentials:
74 .Bd -literal -offset
75 typedef struct krb5_creds {
76     krb5_principal      client;
77     krb5_principal      server;
78     krb5_keyblock       session;
79     krb5_times          times;
80     krb5_data           ticket;
81     krb5_data           second_ticket;
82     krb5_authdata       authdata;
83     krb5_addresses      addresses;
84     krb5_ticket_flags   flags;
85 } krb5_creds;
86 .Ed
87 .Pp
88 .Fn krb5_copy_creds
89 makes a copy of
90 .Fa incred
92 .Fa outcred .
93 .Fa outcred
94 should be freed with
95 .Fn krb5_free_creds
96 by the caller.
97 .Pp
98 .Fn krb5_copy_creds_contents
99 makes a copy of the content of
100 .Fa incred
102 .Fa outcreds .
103 .Fa outcreds
104 should be freed by the called with
105 .Fn krb5_free_creds_contents .
107 .Fn krb5_free_creds
108 frees the content of the 
109 .Fa cred
110 structure and the structure itself.
112 .Fn krb5_free_cred_contents
113 frees the content of the
114 .Fa cred
115 structure.
116 .Sh SEE ALSO
117 .Xr krb5 3 ,
118 .Xr krb5_compare_creds 3 ,
119 .Xr krb5_get_init_creds 3 ,
120 .Xr kerberos 8