From 76a01cfa6685f9b79db9c1ac7288a518995d29bf Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Mon, 30 Jun 1997 04:12:47 +0000 Subject: [PATCH] prototype for `extract_ticket' git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1945 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/krb5_locl.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/krb5/krb5_locl.h b/lib/krb5/krb5_locl.h index ab031cef3..ce122dc56 100644 --- a/lib/krb5/krb5_locl.h +++ b/lib/krb5/krb5_locl.h @@ -103,4 +103,13 @@ krb5_verify_checksum (krb5_context context, #define ALLOC(N, X) ((X*)malloc((N) * sizeof(X))) #define FREE(X) do{if(X)free(X);}while(0) +int +extract_ticket(krb5_context context, + krb5_kdc_rep *rep, + krb5_creds *creds, + krb5_keyblock *key, + krb5_const_pointer keyseed, + krb5_decrypt_proc decrypt_proc, + krb5_const_pointer decryptarg); + #endif /* __KRB5_LOCL_H__ */