All,
Could you please help with information how can i store the tickets as blob:
I'm searching if there is MIT kerberos API's similar to below heimdal
API's which helps to store as blob. could you suggest option,
krb5_creds* tkt = getTkt(); //obtained krbtgt
* krb5_storage* sp = krb5_sto
If you've got a krb5_creds* tkt then tkt->ticket is a krb5_data, which
means tkt->ticket.data and tkt->ticket.length are available...you can
just use them directly to store the ticket somewhere (or send it for u2u
or whatever).
Chris
On 2018-08-25 01:43, Santosh Kumar wrote:
> All,
>
> Could y