export decrypt_krb5_data

svn path=/trunk/; revision=13641
This commit is contained in:
Ronnie Sahlberg 2005-03-06 22:34:13 +00:00
parent 722832f739
commit 26dd060797
2 changed files with 7 additions and 3 deletions

View File

@ -411,7 +411,7 @@ read_keytab_file(char *filename, krb5_context *context)
}
static guint8 *
guint8 *
decrypt_krb5_data(proto_tree *tree, packet_info *pinfo,
krb5_keyusage usage,
int length,
@ -558,7 +558,7 @@ read_keytab_file(char *filename, krb5_context *context)
}
static guint8 *
guint8 *
decrypt_krb5_data(proto_tree *tree, packet_info *pinfo,
krb5_keyusage usage,
int length,
@ -726,7 +726,7 @@ g_warning("added key: %s", sk->origin);
#define CONFOUNDER_PLUS_CHECKSUM 24
static guint8 *
guint8 *
decrypt_krb5_data(proto_tree _U_ *tree, packet_info *pinfo,
int _U_ usage,
int length,

View File

@ -53,4 +53,8 @@ dissect_krb5_ctime(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int offs
int dissect_krb5_cname(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int offset);
int dissect_krb5_realm(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int offset);
#ifdef HAVE_KERBEROS
guint8 * decrypt_krb5_data(proto_tree *tree, packet_info *pinfo, int usage, int length, const char *cryptotext, int keytype);
#endif
#endif /* __PACKET_KERBEROS_H */