1krb5_marshal_credentials - Serialize a krb5_creds object. 2=========================================================== 3 4.. 5 6.. c:function:: krb5_error_code krb5_marshal_credentials(krb5_context context, krb5_creds * in_creds, krb5_data ** data_out) 7 8.. 9 10 11:param: 12 13 **[in]** **context** - Library context 14 15 **[in]** **in_creds** - The credentials object to serialize 16 17 **[out]** **data_out** - The serialized credentials 18 19 20.. 21 22 23:retval: 24 - 0 Success; otherwise - Kerberos error codes 25 26 27.. 28 29 30 31 32 33 34 35Serialize *creds* in the format used by the FILE ccache format (vesion 4) and KCM ccache protocol. 36 37 38 39Use krb5_free_data() to free *data_out* when it is no longer needed. 40 41 42 43 44 45 46 47 48 49 50.. 51 52 53 54 55 56