1krb5_verify_authdata_kdc_issued - Unwrap and verify AD-KDCIssued authorization data. 2====================================================================================== 3 4.. 5 6.. c:function:: krb5_error_code krb5_verify_authdata_kdc_issued(krb5_context context, const krb5_keyblock * key, const krb5_authdata * ad_kdcissued, krb5_principal * issuer, krb5_authdata *** authdata) 7 8.. 9 10 11:param: 12 13 **[in]** **context** - Library context 14 15 **[in]** **key** - Session key 16 17 **[in]** **ad_kdcissued** - AD-KDCIssued authorization data to be unwrapped 18 19 **[out]** **issuer** - Name of issuing principal (or NULL) 20 21 **[out]** **authdata** - Unwrapped list of authorization data 22 23 24.. 25 26 27 28.. 29 30 31 32 33 34 35 36This function unwraps an AD-KDCIssued authdatum (see RFC 4120 section 5.2.6.2) and verifies its signature against *key* . The issuer field of the authdatum element is returned in *issuer* , and the unwrapped list of authdata is returned in *authdata* . 37 38 39 40 41 42 43.. 44 45 46 47 48 49