xref: /freebsd/crypto/krb5/doc/html/_sources/appdev/refs/api/krb5_make_authdata_kdc_issued.rst.txt (revision 7f2fe78b9dd5f51c821d771b63d2e096f6fd49e9)
1krb5_make_authdata_kdc_issued -  Encode and sign AD-KDCIssued authorization data.
2==================================================================================
3
4..
5
6.. c:function:: krb5_error_code krb5_make_authdata_kdc_issued(krb5_context context, const krb5_keyblock * key, krb5_const_principal issuer, krb5_authdata *const * authdata, krb5_authdata *** ad_kdcissued)
7
8..
9
10
11:param:
12
13	          **[in]** **context** - Library context
14
15	          **[in]** **key** - Session key
16
17	          **[in]** **issuer** - The name of the issuing principal
18
19	          **[in]** **authdata** - List of authorization data to be signed
20
21	          **[out]** **ad_kdcissued** - List containing AD-KDCIssued authdata
22
23
24..
25
26
27
28..
29
30
31
32
33
34
35
36This function wraps a list of authorization data entries *authdata* in an AD-KDCIssued container (see RFC 4120 section 5.2.6.2) signed with *key* . The result is returned in *ad_kdcissued* as a single-element list.
37
38
39
40
41
42
43..
44
45
46
47
48
49