more prototypes

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2319 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1997-07-15 15:24:18 +00:00
parent 0890701979
commit 0a975b3091
3 changed files with 24 additions and 0 deletions

View File

@@ -3,6 +3,13 @@
#ifndef __CACHE_H__
#define __CACHE_H__
void
krb5_free_ccache(krb5_context context,
krb5_ccache val);
krb5_error_code
krb5_cc_register(krb5_context context, krb5_cc_ops *ops, int override);
krb5_error_code
krb5_cc_resolve(krb5_context context,
const char *residual,

View File

@@ -716,6 +716,13 @@ krb5_build_principal_va(krb5_context context,
const char *realm,
va_list ap);
krb5_error_code
krb5_build_principal_va_ext(krb5_context context,
krb5_principal *principal,
int rlen,
const char *realm,
va_list ap);
krb5_error_code
krb5_build_principal_ext(krb5_context context,
krb5_principal *principal,
@@ -853,6 +860,10 @@ krb5_decrypt (krb5_context context,
const krb5_keyblock *keyblock,
krb5_data *result);
krb5_error_code
krb5_generate_random_des_key(krb5_context context,
krb5_keyblock *keyblock);
krb5_error_code
krb5_generate_random_keyblock(krb5_context,
int,

View File

@@ -35,6 +35,12 @@ krb5_store_string(krb5_storage *sp, char *s);
krb5_error_code
krb5_ret_string(krb5_storage *sp, char **string);
krb5_error_code
krb5_store_stringz(krb5_storage *sp, char *s);
krb5_error_code
krb5_ret_stringz(krb5_storage *sp, char **string);
/* mem */
size_t mem_store(krb5_storage *sp, void *data, size_t size);