mirror of
https://github.com/darlinghq/darling-MITKerberosShim.git
synced 2024-11-26 22:10:43 +00:00
4528 lines
106 KiB
C
4528 lines
106 KiB
C
/*
|
|
* Copyright (c) 2008-2010 Kungliga Tekniska Högskolan
|
|
* (Royal Institute of Technology, Stockholm, Sweden).
|
|
* All rights reserved.
|
|
*
|
|
* Portions Copyright (c) 2008-2010 Apple Inc. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
/* override heimdals own prototypes */
|
|
#define __krb5_protos_h__
|
|
|
|
#define KRB5_LIB_VARIABLE
|
|
#define KRB5_LIB_FUNCTION
|
|
|
|
#include <Heimdal/krb5.h>
|
|
|
|
extern krb5_context milcontext;
|
|
|
|
#include "mit-krb5.h"
|
|
|
|
#include <syslog.h>
|
|
|
|
#define LOG_UNIMPLEMENTED() do { } while(0)
|
|
#define LOG_ENTRY() mshim_log_entry("MITKerberosShim: %s entered", __func__)
|
|
#define LOG_FAILURE(_r, _s) mshim_failure(__func__, _r, _s)
|
|
|
|
void
|
|
mshim_log_entry(const char *func, ...);
|
|
|
|
int
|
|
mshim_failure(const char *func, int error, const char *subsystem);
|
|
|
|
krb5_context mshim_ctx(void);
|
|
|
|
#define milcontext mshim_ctx()
|
|
|
|
|
|
|
|
/* this might not work, lets try it out, if anyone uses krb5_build_principal_va we are smoked */
|
|
struct comb_principal {
|
|
struct mit_krb5_principal_data mit;
|
|
krb5_principal heim;
|
|
};
|
|
|
|
#define HC(x) ((krb5_context)x)
|
|
|
|
struct mshim_map_flags {
|
|
unsigned long in;
|
|
unsigned long out;
|
|
};
|
|
|
|
unsigned long
|
|
mshim_remap_flags(unsigned long, const struct mshim_map_flags *);
|
|
|
|
|
|
void mshim_init_context(void);
|
|
|
|
/* mapping functions */
|
|
void mshim_mcred2hcred(krb5_context, mit_krb5_creds *, krb5_creds *);
|
|
void mshim_hcred2mcred(krb5_context, krb5_creds *, mit_krb5_creds *);
|
|
mit_krb5_principal
|
|
mshim_hprinc2mprinc(krb5_context, krb5_principal);
|
|
krb5_error_code
|
|
mshim_hdata2mdata(const krb5_data *, mit_krb5_data *);
|
|
krb5_error_code
|
|
mshim_mdata2hdata(const mit_krb5_data *m, krb5_data *h);
|
|
void
|
|
mshim_hkeyblock2mkeyblock(const krb5_keyblock *, mit_krb5_keyblock *);
|
|
void
|
|
mshim_mkeyblock2hkeyblock(const mit_krb5_keyblock *m, krb5_keyblock *h);
|
|
|
|
void mshim_haprepencpart2maprepencpart(const krb5_ap_rep_enc_part *,
|
|
mit_krb5_ap_rep_enc_part *);
|
|
void mshim_herror2merror(krb5_context, const krb5_error *, mit_krb5_error *);
|
|
void mshim_hreplay2mreplay(const krb5_replay_data *, mit_krb5_replay_data *);
|
|
void * mshim_malloc(size_t);
|
|
|
|
|
|
|
|
enum {
|
|
klPromptMechanism_Autodetect = 0,
|
|
klPromptMechanism_GUI = 1,
|
|
klPromptMechanism_CLI = 2,
|
|
klPromptMechanism_None = 0xFFFFFFFF
|
|
};
|
|
|
|
/* krb5-protos.h + sed */
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb524_convert_creds_kdc (
|
|
krb5_context /*context*/,
|
|
krb5_creds */*in_cred*/,
|
|
struct credentials */*v4creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb524_convert_creds_kdc_ccache (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_creds */*in_cred*/,
|
|
struct credentials */*v4creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_425_conv_principal (
|
|
krb5_context /*context*/,
|
|
const char */*name*/,
|
|
const char */*instance*/,
|
|
const char */*realm*/,
|
|
krb5_principal */*princ*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_425_conv_principal_ext (
|
|
krb5_context /*context*/,
|
|
const char */*name*/,
|
|
const char */*instance*/,
|
|
const char */*realm*/,
|
|
krb5_boolean (*/*func*/)(krb5_context, krb5_principal),
|
|
krb5_boolean /*resolve*/,
|
|
krb5_principal */*principal*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_425_conv_principal_ext2 (
|
|
krb5_context /*context*/,
|
|
const char */*name*/,
|
|
const char */*instance*/,
|
|
const char */*realm*/,
|
|
krb5_boolean (*/*func*/)(krb5_context, void *, krb5_principal),
|
|
void */*funcctx*/,
|
|
krb5_boolean /*resolve*/,
|
|
krb5_principal */*princ*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_524_conv_principal (
|
|
krb5_context /*context*/,
|
|
const krb5_principal /*principal*/,
|
|
char */*name*/,
|
|
char */*instance*/,
|
|
char */*realm*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_abort (
|
|
krb5_context /*context*/,
|
|
krb5_error_code /*code*/,
|
|
const char */*fmt*/,
|
|
...)
|
|
__attribute__ ((noreturn, format (printf, 3, 4)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_abortx (
|
|
krb5_context /*context*/,
|
|
const char */*fmt*/,
|
|
...)
|
|
__attribute__ ((noreturn, format (printf, 2, 3)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_acl_match_file (
|
|
krb5_context /*context*/,
|
|
const char */*file*/,
|
|
const char */*format*/,
|
|
...);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_acl_match_string (
|
|
krb5_context /*context*/,
|
|
const char */*string*/,
|
|
const char */*format*/,
|
|
...);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_add_et_list (
|
|
krb5_context /*context*/,
|
|
void (*/*func*/)(struct et_list **));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_add_extra_addresses (
|
|
krb5_context /*context*/,
|
|
krb5_addresses */*addresses*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_add_ignore_addresses (
|
|
krb5_context /*context*/,
|
|
krb5_addresses */*addresses*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_addlog_dest (
|
|
krb5_context /*context*/,
|
|
krb5_log_facility */*f*/,
|
|
const char */*orig*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_addlog_func (
|
|
krb5_context /*context*/,
|
|
krb5_log_facility */*fac*/,
|
|
int /*min*/,
|
|
int /*max*/,
|
|
krb5_log_log_func_t /*log_func*/,
|
|
krb5_log_close_func_t /*close_func*/,
|
|
void */*data*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_addr2sockaddr (
|
|
krb5_context /*context*/,
|
|
const krb5_address */*addr*/,
|
|
struct sockaddr */*sa*/,
|
|
krb5_socklen_t */*sa_size*/,
|
|
int /*port*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_address_compare (
|
|
krb5_context /*context*/,
|
|
const krb5_address */*addr1*/,
|
|
const krb5_address */*addr2*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_address_order (
|
|
krb5_context /*context*/,
|
|
const krb5_address */*addr1*/,
|
|
const krb5_address */*addr2*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_address_prefixlen_boundary (
|
|
krb5_context /*context*/,
|
|
const krb5_address */*inaddr*/,
|
|
unsigned long /*prefixlen*/,
|
|
krb5_address */*low*/,
|
|
krb5_address */*high*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_address_search (
|
|
krb5_context /*context*/,
|
|
const krb5_address */*addr*/,
|
|
const krb5_addresses */*addrlist*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_aname_to_localname (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*aname*/,
|
|
size_t /*lnsize*/,
|
|
char */*lname*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_anyaddr (
|
|
krb5_context /*context*/,
|
|
int /*af*/,
|
|
struct sockaddr */*sa*/,
|
|
krb5_socklen_t */*sa_size*/,
|
|
int /*port*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_appdefault_boolean (
|
|
krb5_context /*context*/,
|
|
const char */*appname*/,
|
|
krb5_const_realm /*realm*/,
|
|
const char */*option*/,
|
|
krb5_boolean /*def_val*/,
|
|
krb5_boolean */*ret_val*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_appdefault_string (
|
|
krb5_context /*context*/,
|
|
const char */*appname*/,
|
|
krb5_const_realm /*realm*/,
|
|
const char */*option*/,
|
|
const char */*def_val*/,
|
|
char **/*ret_val*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_appdefault_time (
|
|
krb5_context /*context*/,
|
|
const char */*appname*/,
|
|
krb5_const_realm /*realm*/,
|
|
const char */*option*/,
|
|
time_t /*def_val*/,
|
|
time_t */*ret_val*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_append_addresses (
|
|
krb5_context /*context*/,
|
|
krb5_addresses */*dest*/,
|
|
const krb5_addresses */*source*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_addflags (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
int32_t /*addflags*/,
|
|
int32_t */*flags*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_free (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_genaddrs (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
int /*fd*/,
|
|
int /*flags*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_generatelocalsubkey (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_keyblock */*key*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_getaddrs (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_address **/*local_addr*/,
|
|
krb5_address **/*remote_addr*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_getauthenticator (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_authenticator */*authenticator*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_getcksumtype (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_cksumtype */*cksumtype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_getflags (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
int32_t */*flags*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_getkey (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_keyblock **/*keyblock*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_getkeytype (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_keytype */*keytype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_getlocalseqnumber (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
int32_t */*seqnumber*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_getlocalsubkey (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_keyblock **/*keyblock*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_getrcache (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_rcache */*rcache*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_getremotesubkey (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_keyblock **/*keyblock*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_init (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context */*auth_context*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_removeflags (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
int32_t /*removeflags*/,
|
|
int32_t */*flags*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_setaddrs (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_address */*local_addr*/,
|
|
krb5_address */*remote_addr*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_setaddrs_from_fd (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
void */*p_fd*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_setcksumtype (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_cksumtype /*cksumtype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_setflags (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
int32_t /*flags*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_setkey (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_keyblock */*keyblock*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_setkeytype (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_keytype /*keytype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_setlocalseqnumber (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
int32_t /*seqnumber*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_setlocalsubkey (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_keyblock */*keyblock*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_setrcache (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_rcache /*rcache*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_setremoteseqnumber (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
int32_t /*seqnumber*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_setremotesubkey (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_keyblock */*keyblock*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_con_setuserkey (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_keyblock */*keyblock*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_auth_getremoteseqnumber (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
int32_t */*seqnumber*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_build_ap_req (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*enctype*/,
|
|
krb5_creds */*cred*/,
|
|
krb5_flags /*ap_options*/,
|
|
krb5_data /*authenticator*/,
|
|
krb5_data */*retdata*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_build_authenticator (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_enctype /*enctype*/,
|
|
krb5_creds */*cred*/,
|
|
Checksum */*cksum*/,
|
|
Authenticator **/*auth_result*/,
|
|
krb5_data */*result*/,
|
|
krb5_key_usage /*usage*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_build_principal (
|
|
krb5_context /*context*/,
|
|
krb5_principal */*principal*/,
|
|
int /*rlen*/,
|
|
krb5_const_realm /*realm*/,
|
|
...);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_build_principal_ext (
|
|
krb5_context /*context*/,
|
|
krb5_principal */*principal*/,
|
|
int /*rlen*/,
|
|
krb5_const_realm /*realm*/,
|
|
...);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_build_principal_va (
|
|
krb5_context /*context*/,
|
|
krb5_principal */*principal*/,
|
|
int /*rlen*/,
|
|
krb5_const_realm /*realm*/,
|
|
va_list /*ap*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_build_principal_va_ext (
|
|
krb5_context /*context*/,
|
|
krb5_principal */*principal*/,
|
|
int /*rlen*/,
|
|
krb5_const_realm /*realm*/,
|
|
va_list /*ap*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_c_block_size (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*enctype*/,
|
|
size_t */*blocksize*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_c_checksum_length (
|
|
krb5_context /*context*/,
|
|
krb5_cksumtype /*cksumtype*/,
|
|
size_t */*length*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_c_decrypt (
|
|
krb5_context /*context*/,
|
|
const krb5_keyblock /*key*/,
|
|
krb5_keyusage /*usage*/,
|
|
const krb5_data */*ivec*/,
|
|
krb5_enc_data */*input*/,
|
|
krb5_data */*output*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_c_encrypt (
|
|
krb5_context /*context*/,
|
|
const krb5_keyblock */*key*/,
|
|
krb5_keyusage /*usage*/,
|
|
const krb5_data */*ivec*/,
|
|
const krb5_data */*input*/,
|
|
krb5_enc_data */*output*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_c_encrypt_length (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*enctype*/,
|
|
size_t /*inputlen*/,
|
|
size_t */*length*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_c_enctype_compare (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*e1*/,
|
|
krb5_enctype /*e2*/,
|
|
krb5_boolean */*similar*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_c_get_checksum (
|
|
krb5_context /*context*/,
|
|
const krb5_checksum */*cksum*/,
|
|
krb5_cksumtype */*type*/,
|
|
krb5_data **/*data*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_c_is_coll_proof_cksum (krb5_cksumtype /*ctype*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_c_is_keyed_cksum (krb5_cksumtype /*ctype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_c_make_checksum (
|
|
krb5_context /*context*/,
|
|
krb5_cksumtype /*cksumtype*/,
|
|
const krb5_keyblock */*key*/,
|
|
krb5_keyusage /*usage*/,
|
|
const krb5_data */*input*/,
|
|
krb5_checksum */*cksum*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_c_make_random_key (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*enctype*/,
|
|
krb5_keyblock */*random_key*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_c_set_checksum (
|
|
krb5_context /*context*/,
|
|
krb5_checksum */*cksum*/,
|
|
krb5_cksumtype /*type*/,
|
|
const krb5_data */*data*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_c_valid_cksumtype (krb5_cksumtype /*ctype*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_c_valid_enctype (krb5_enctype /*etype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_c_verify_checksum (
|
|
krb5_context /*context*/,
|
|
const krb5_keyblock */*key*/,
|
|
krb5_keyusage /*usage*/,
|
|
const krb5_data */*data*/,
|
|
const krb5_checksum */*cksum*/,
|
|
krb5_boolean */*valid*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_cache_end_seq_get (
|
|
krb5_context /*context*/,
|
|
krb5_cc_cache_cursor /*cursor*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_cache_get_first (
|
|
krb5_context /*context*/,
|
|
const char */*type*/,
|
|
krb5_cc_cache_cursor */*cursor*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_cache_match (
|
|
krb5_context /*context*/,
|
|
krb5_principal /*client*/,
|
|
krb5_ccache */*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_cache_next (
|
|
krb5_context /*context*/,
|
|
krb5_cc_cache_cursor /*cursor*/,
|
|
krb5_ccache */*id*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_clear_mcred (krb5_creds */*mcred*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_close (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_copy_cache (
|
|
krb5_context /*context*/,
|
|
const krb5_ccache /*from*/,
|
|
krb5_ccache /*to*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_copy_creds (
|
|
krb5_context /*context*/,
|
|
const krb5_ccache /*from*/,
|
|
krb5_ccache /*to*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_copy_match_f (
|
|
krb5_context /*context*/,
|
|
const krb5_ccache /*from*/,
|
|
krb5_ccache /*to*/,
|
|
krb5_boolean (*/*match*/)(krb5_context, void *, const krb5_creds *),
|
|
void */*matchctx*/,
|
|
unsigned int */*matched*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_default (
|
|
krb5_context /*context*/,
|
|
krb5_ccache */*id*/);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_default_name (krb5_context /*context*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_destroy (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_end_seq_get (
|
|
krb5_context /*context*/,
|
|
const krb5_ccache /*id*/,
|
|
krb5_cc_cursor */*cursor*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_gen_new (
|
|
krb5_context /*context*/,
|
|
const krb5_cc_ops */*ops*/,
|
|
krb5_ccache */*id*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_get_config (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
krb5_const_principal /*principal*/,
|
|
const char */*name*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_get_friendly_name (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
char **/*name*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_get_full_name (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
char **/*str*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_get_lifetime (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
time_t */*t*/);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_get_name (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/);
|
|
|
|
const krb5_cc_ops *
|
|
heim_krb5_cc_get_ops (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/);
|
|
|
|
const krb5_cc_ops *
|
|
heim_krb5_cc_get_prefix_ops (
|
|
krb5_context /*context*/,
|
|
const char */*prefix*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_get_principal (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
krb5_principal */*principal*/);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_get_type (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_get_version (
|
|
krb5_context /*context*/,
|
|
const krb5_ccache /*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_initialize (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
krb5_principal /*primary_principal*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_last_change_time (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
krb5_timestamp */*mtime*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_cc_move (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*from*/,
|
|
krb5_ccache /*to*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_new_unique (
|
|
krb5_context /*context*/,
|
|
const char */*type*/,
|
|
const char */*hint*/,
|
|
krb5_ccache */*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_next_cred (
|
|
krb5_context /*context*/,
|
|
const krb5_ccache /*id*/,
|
|
krb5_cc_cursor */*cursor*/,
|
|
krb5_creds */*creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_register (
|
|
krb5_context /*context*/,
|
|
const krb5_cc_ops */*ops*/,
|
|
krb5_boolean /*override*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_remove_cred (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
krb5_flags /*which*/,
|
|
krb5_creds */*cred*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_resolve (
|
|
krb5_context /*context*/,
|
|
const char */*name*/,
|
|
krb5_ccache */*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_retrieve_cred (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
krb5_flags /*whichfields*/,
|
|
const krb5_creds */*mcreds*/,
|
|
krb5_creds */*creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_set_config (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
krb5_const_principal /*principal*/,
|
|
const char */*name*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_set_default_name (
|
|
krb5_context /*context*/,
|
|
const char */*name*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_set_flags (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
krb5_flags /*flags*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_set_friendly_name (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
const char */*name*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_start_seq_get (
|
|
krb5_context /*context*/,
|
|
const krb5_ccache /*id*/,
|
|
krb5_cc_cursor */*cursor*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cc_store_cred (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
krb5_creds */*creds*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_cc_switch (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cccol_cursor_free (
|
|
krb5_context /*context*/,
|
|
krb5_cccol_cursor */*cursor*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cccol_cursor_new (
|
|
krb5_context /*context*/,
|
|
krb5_cccol_cursor */*cursor*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cccol_cursor_next (
|
|
krb5_context /*context*/,
|
|
krb5_cccol_cursor /*cursor*/,
|
|
krb5_ccache */*cache*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cccol_last_change_time (
|
|
krb5_context /*context*/,
|
|
const char */*type*/,
|
|
krb5_timestamp */*mtime*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_change_password (
|
|
krb5_context /*context*/,
|
|
krb5_creds */*creds*/,
|
|
const char */*newpw*/,
|
|
int */*result_code*/,
|
|
krb5_data */*result_code_string*/,
|
|
krb5_data */*result_string*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_check_transited (
|
|
krb5_context /*context*/,
|
|
krb5_const_realm /*client_realm*/,
|
|
krb5_const_realm /*server_realm*/,
|
|
krb5_realm */*realms*/,
|
|
unsigned int /*num_realms*/,
|
|
int */*bad_realm*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_check_transited_realms (
|
|
krb5_context /*context*/,
|
|
const char *const */*realms*/,
|
|
unsigned int /*num_realms*/,
|
|
int */*bad_realm*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_checksum_disable (
|
|
krb5_context /*context*/,
|
|
krb5_cksumtype /*type*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_checksum_free (
|
|
krb5_context /*context*/,
|
|
krb5_checksum */*cksum*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_checksum_is_collision_proof (
|
|
krb5_context /*context*/,
|
|
krb5_cksumtype /*type*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_checksum_is_keyed (
|
|
krb5_context /*context*/,
|
|
krb5_cksumtype /*type*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_checksumsize (
|
|
krb5_context /*context*/,
|
|
krb5_cksumtype /*type*/,
|
|
size_t */*size*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cksumtype_to_enctype (
|
|
krb5_context /*context*/,
|
|
krb5_cksumtype /*ctype*/,
|
|
krb5_enctype */*etype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_cksumtype_valid (
|
|
krb5_context /*context*/,
|
|
krb5_cksumtype /*ctype*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_clear_error_message (krb5_context /*context*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_clear_error_string (krb5_context /*context*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_closelog (
|
|
krb5_context /*context*/,
|
|
krb5_log_facility */*fac*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_compare_creds (
|
|
krb5_context /*context*/,
|
|
krb5_flags /*whichfields*/,
|
|
const krb5_creds * /*mcreds*/,
|
|
const krb5_creds * /*creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_config_file_free (
|
|
krb5_context /*context*/,
|
|
krb5_config_section */*s*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_config_free_strings (char **/*strings*/);
|
|
|
|
const void *
|
|
heim_krb5_config_get (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
int /*type*/,
|
|
...);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_config_get_bool (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
...);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_config_get_bool_default (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
krb5_boolean /*def_value*/,
|
|
...);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_config_get_int (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
...);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_config_get_int_default (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
int /*def_value*/,
|
|
...);
|
|
|
|
const krb5_config_binding *
|
|
heim_krb5_config_get_list (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
...);
|
|
|
|
const void *
|
|
heim_krb5_config_get_next (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
const krb5_config_binding **/*pointer*/,
|
|
int /*type*/,
|
|
...);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_config_get_string (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
...);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_config_get_string_default (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
const char */*def_value*/,
|
|
...);
|
|
|
|
char**
|
|
heim_krb5_config_get_strings (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
...);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_config_get_time (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
...);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_config_get_time_default (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
int /*def_value*/,
|
|
...);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_config_parse_file (
|
|
krb5_context /*context*/,
|
|
const char */*fname*/,
|
|
krb5_config_section **/*res*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_config_parse_file_multi (
|
|
krb5_context /*context*/,
|
|
const char */*fname*/,
|
|
krb5_config_section **/*res*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_config_parse_string_multi (
|
|
krb5_context /*context*/,
|
|
const char */*string*/,
|
|
krb5_config_section **/*res*/);
|
|
|
|
const void *
|
|
heim_krb5_config_vget (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
int /*type*/,
|
|
va_list /*args*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_config_vget_bool (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
va_list /*args*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_config_vget_bool_default (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
krb5_boolean /*def_value*/,
|
|
va_list /*args*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_config_vget_int (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
va_list /*args*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_config_vget_int_default (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
int /*def_value*/,
|
|
va_list /*args*/);
|
|
|
|
const krb5_config_binding *
|
|
heim_krb5_config_vget_list (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
va_list /*args*/);
|
|
|
|
const void *
|
|
heim_krb5_config_vget_next (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
const krb5_config_binding **/*pointer*/,
|
|
int /*type*/,
|
|
va_list /*args*/);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_config_vget_string (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
va_list /*args*/);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_config_vget_string_default (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
const char */*def_value*/,
|
|
va_list /*args*/);
|
|
|
|
char ** KRB5_LIB_FUNCTION
|
|
heim_krb5_config_vget_strings (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
va_list /*args*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_config_vget_time (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
va_list /*args*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_config_vget_time_default (
|
|
krb5_context /*context*/,
|
|
const krb5_config_section */*c*/,
|
|
int /*def_value*/,
|
|
va_list /*args*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_copy_address (
|
|
krb5_context /*context*/,
|
|
const krb5_address */*inaddr*/,
|
|
krb5_address */*outaddr*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_copy_addresses (
|
|
krb5_context /*context*/,
|
|
const krb5_addresses */*inaddr*/,
|
|
krb5_addresses */*outaddr*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_copy_checksum (
|
|
krb5_context /*context*/,
|
|
const krb5_checksum */*old*/,
|
|
krb5_checksum **/*new*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_copy_context (
|
|
krb5_context /*context*/,
|
|
krb5_context */*out*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_copy_creds (
|
|
krb5_context /*context*/,
|
|
const krb5_creds */*incred*/,
|
|
krb5_creds **/*outcred*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_copy_creds_contents (
|
|
krb5_context /*context*/,
|
|
const krb5_creds */*incred*/,
|
|
krb5_creds */*c*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_copy_data (
|
|
krb5_context /*context*/,
|
|
const krb5_data */*indata*/,
|
|
krb5_data **/*outdata*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_copy_host_realm (
|
|
krb5_context /*context*/,
|
|
const krb5_realm */*from*/,
|
|
krb5_realm **/*to*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_copy_keyblock (
|
|
krb5_context /*context*/,
|
|
const krb5_keyblock */*inblock*/,
|
|
krb5_keyblock **/*to*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_copy_keyblock_contents (
|
|
krb5_context /*context*/,
|
|
const krb5_keyblock */*inblock*/,
|
|
krb5_keyblock */*to*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_copy_principal (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*inprinc*/,
|
|
krb5_principal */*outprinc*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_copy_ticket (
|
|
krb5_context /*context*/,
|
|
const krb5_ticket */*from*/,
|
|
krb5_ticket **/*to*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_create_checksum (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
krb5_key_usage /*usage*/,
|
|
int /*type*/,
|
|
void */*data*/,
|
|
size_t /*len*/,
|
|
Checksum */*result*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_create_checksum_iov (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
unsigned /*usage*/,
|
|
krb5_crypto_iov */*data*/,
|
|
unsigned int /*num_data*/,
|
|
krb5_cksumtype */*type*/);
|
|
|
|
unsigned long
|
|
heim_krb5_creds_get_ticket_flags (krb5_creds */*creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_crypto_destroy (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_crypto_fx_cf2 (
|
|
krb5_context /*context*/,
|
|
const krb5_crypto /*crypto1*/,
|
|
const krb5_crypto /*crypto2*/,
|
|
krb5_data */*pepper1*/,
|
|
krb5_data */*pepper2*/,
|
|
krb5_enctype /*enctype*/,
|
|
krb5_keyblock */*res*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_crypto_get_checksum_type (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
krb5_cksumtype */*type*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_crypto_getblocksize (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
size_t */*blocksize*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_crypto_getconfoundersize (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
size_t */*confoundersize*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_crypto_getenctype (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
krb5_enctype */*enctype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_crypto_getpadsize (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
size_t */*padsize*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_crypto_init (
|
|
krb5_context /*context*/,
|
|
const krb5_keyblock */*key*/,
|
|
krb5_enctype /*etype*/,
|
|
krb5_crypto */*crypto*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_crypto_length (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
int /*type*/,
|
|
size_t */*len*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_crypto_length_iov (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
krb5_crypto_iov */*data*/,
|
|
unsigned int /*num_data*/);
|
|
|
|
size_t
|
|
heim_krb5_crypto_overhead (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_crypto_prf (
|
|
krb5_context /*context*/,
|
|
const krb5_crypto /*crypto*/,
|
|
const krb5_data */*input*/,
|
|
krb5_data */*output*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_crypto_prf_length (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*type*/,
|
|
size_t */*length*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_data_alloc (
|
|
krb5_data */*p*/,
|
|
int /*len*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_data_cmp (
|
|
const krb5_data */*data1*/,
|
|
const krb5_data */*data2*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_data_copy (
|
|
krb5_data */*p*/,
|
|
const void */*data*/,
|
|
size_t /*len*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_data_free (krb5_data */*p*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_data_realloc (
|
|
krb5_data */*p*/,
|
|
int /*len*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_data_zero (krb5_data */*p*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decode_Authenticator (
|
|
krb5_context /*context*/,
|
|
const void */*data*/,
|
|
size_t /*length*/,
|
|
Authenticator */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decode_ETYPE_INFO (
|
|
krb5_context /*context*/,
|
|
const void */*data*/,
|
|
size_t /*length*/,
|
|
ETYPE_INFO */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decode_ETYPE_INFO2 (
|
|
krb5_context /*context*/,
|
|
const void */*data*/,
|
|
size_t /*length*/,
|
|
ETYPE_INFO2 */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decode_EncAPRepPart (
|
|
krb5_context /*context*/,
|
|
const void */*data*/,
|
|
size_t /*length*/,
|
|
EncAPRepPart */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decode_EncASRepPart (
|
|
krb5_context /*context*/,
|
|
const void */*data*/,
|
|
size_t /*length*/,
|
|
EncASRepPart */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decode_EncKrbCredPart (
|
|
krb5_context /*context*/,
|
|
const void */*data*/,
|
|
size_t /*length*/,
|
|
EncKrbCredPart */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decode_EncTGSRepPart (
|
|
krb5_context /*context*/,
|
|
const void */*data*/,
|
|
size_t /*length*/,
|
|
EncTGSRepPart */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decode_EncTicketPart (
|
|
krb5_context /*context*/,
|
|
const void */*data*/,
|
|
size_t /*length*/,
|
|
EncTicketPart */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decode_ap_req (
|
|
krb5_context /*context*/,
|
|
const krb5_data */*inbuf*/,
|
|
krb5_ap_req */*ap_req*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decrypt (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
unsigned /*usage*/,
|
|
void */*data*/,
|
|
size_t /*len*/,
|
|
krb5_data */*result*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decrypt_EncryptedData (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
unsigned /*usage*/,
|
|
const EncryptedData */*e*/,
|
|
krb5_data */*result*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decrypt_iov_ivec (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
unsigned /*usage*/,
|
|
krb5_crypto_iov */*data*/,
|
|
unsigned int /*num_data*/,
|
|
void */*ivec*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decrypt_ivec (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
unsigned /*usage*/,
|
|
void */*data*/,
|
|
size_t /*len*/,
|
|
krb5_data */*result*/,
|
|
void */*ivec*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_decrypt_ticket (
|
|
krb5_context /*context*/,
|
|
Ticket */*ticket*/,
|
|
krb5_keyblock */*key*/,
|
|
EncTicketPart */*out*/,
|
|
krb5_flags /*flags*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_derive_key (
|
|
krb5_context /*context*/,
|
|
const krb5_keyblock */*key*/,
|
|
krb5_enctype /*etype*/,
|
|
const void */*constant*/,
|
|
size_t /*constant_len*/,
|
|
krb5_keyblock **/*derived_key*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_alloc (
|
|
krb5_context /*context*/,
|
|
krb5_digest */*digest*/);
|
|
|
|
void
|
|
heim_krb5_digest_free (krb5_digest /*digest*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_get_client_binding (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
char **/*type*/,
|
|
char **/*binding*/);
|
|
|
|
const char *
|
|
heim_krb5_digest_get_identifier (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/);
|
|
|
|
const char *
|
|
heim_krb5_digest_get_opaque (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/);
|
|
|
|
const char *
|
|
heim_krb5_digest_get_rsp (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/);
|
|
|
|
const char *
|
|
heim_krb5_digest_get_server_nonce (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_get_session_key (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_get_tickets (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
Ticket **/*tickets*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_init_request (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
krb5_realm /*realm*/,
|
|
krb5_ccache /*ccache*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_probe (
|
|
krb5_context /*context*/,
|
|
krb5_realm /*realm*/,
|
|
krb5_ccache /*ccache*/,
|
|
unsigned */*flags*/);
|
|
|
|
krb5_boolean
|
|
heim_krb5_digest_rep_get_status (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_request (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
krb5_realm /*realm*/,
|
|
krb5_ccache /*ccache*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_authentication_user (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
krb5_principal /*authentication_user*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_authid (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*authid*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_client_nonce (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*nonce*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_digest (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*dgst*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_hostname (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*hostname*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_identifier (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*id*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_method (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*method*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_nonceCount (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*nonce_count*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_opaque (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*opaque*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_qop (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*qop*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_realm (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*realm*/);
|
|
|
|
int
|
|
heim_krb5_digest_set_responseData (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*response*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_server_cb (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*type*/,
|
|
const char */*binding*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_server_nonce (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*nonce*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_type (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*type*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_uri (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*uri*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_digest_set_username (
|
|
krb5_context /*context*/,
|
|
krb5_digest /*digest*/,
|
|
const char */*username*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_domain_x500_decode (
|
|
krb5_context /*context*/,
|
|
krb5_data /*tr*/,
|
|
char ***/*realms*/,
|
|
unsigned int */*num_realms*/,
|
|
const char */*client_realm*/,
|
|
const char */*server_realm*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_domain_x500_encode (
|
|
char **/*realms*/,
|
|
unsigned int /*num_realms*/,
|
|
krb5_data */*encoding*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_eai_to_heim_errno (
|
|
int /*eai_errno*/,
|
|
int /*system_error*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_encode_Authenticator (
|
|
krb5_context /*context*/,
|
|
void */*data*/,
|
|
size_t /*length*/,
|
|
Authenticator */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_encode_ETYPE_INFO (
|
|
krb5_context /*context*/,
|
|
void */*data*/,
|
|
size_t /*length*/,
|
|
ETYPE_INFO */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_encode_ETYPE_INFO2 (
|
|
krb5_context /*context*/,
|
|
void */*data*/,
|
|
size_t /*length*/,
|
|
ETYPE_INFO2 */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_encode_EncAPRepPart (
|
|
krb5_context /*context*/,
|
|
void */*data*/,
|
|
size_t /*length*/,
|
|
EncAPRepPart */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_encode_EncASRepPart (
|
|
krb5_context /*context*/,
|
|
void */*data*/,
|
|
size_t /*length*/,
|
|
EncASRepPart */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_encode_EncKrbCredPart (
|
|
krb5_context /*context*/,
|
|
void */*data*/,
|
|
size_t /*length*/,
|
|
EncKrbCredPart */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_encode_EncTGSRepPart (
|
|
krb5_context /*context*/,
|
|
void */*data*/,
|
|
size_t /*length*/,
|
|
EncTGSRepPart */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_encode_EncTicketPart (
|
|
krb5_context /*context*/,
|
|
void */*data*/,
|
|
size_t /*length*/,
|
|
EncTicketPart */*t*/,
|
|
size_t */*len*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_encrypt (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
unsigned /*usage*/,
|
|
const void */*data*/,
|
|
size_t /*len*/,
|
|
krb5_data */*result*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_encrypt_EncryptedData (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
unsigned /*usage*/,
|
|
void */*data*/,
|
|
size_t /*len*/,
|
|
int /*kvno*/,
|
|
EncryptedData */*result*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_encrypt_iov_ivec (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
unsigned /*usage*/,
|
|
krb5_crypto_iov */*data*/,
|
|
int /*num_data*/,
|
|
void */*ivec*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_encrypt_ivec (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
unsigned /*usage*/,
|
|
const void */*data*/,
|
|
size_t /*len*/,
|
|
krb5_data */*result*/,
|
|
void */*ivec*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_enctype_disable (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*enctype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_enctype_enable (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*enctype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_enctype_keybits (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*type*/,
|
|
size_t */*keybits*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_enctype_keysize (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*type*/,
|
|
size_t */*keysize*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_enctype_to_keytype (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*etype*/,
|
|
krb5_keytype */*keytype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_enctype_to_string (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*etype*/,
|
|
char **/*string*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_enctype_valid (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*etype*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_enctypes_compatible_keys (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*etype1*/,
|
|
krb5_enctype /*etype2*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_err (
|
|
krb5_context /*context*/,
|
|
int /*eval*/,
|
|
krb5_error_code /*code*/,
|
|
const char */*fmt*/,
|
|
...)
|
|
__attribute__ ((noreturn, format (printf, 4, 5)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_error_from_rd_error (
|
|
krb5_context /*context*/,
|
|
const krb5_error */*error*/,
|
|
const krb5_creds */*creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_errx (
|
|
krb5_context /*context*/,
|
|
int /*eval*/,
|
|
const char */*fmt*/,
|
|
...)
|
|
__attribute__ ((noreturn, format (printf, 3, 4)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_expand_hostname (
|
|
krb5_context /*context*/,
|
|
const char */*orig_hostname*/,
|
|
char **/*new_hostname*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_expand_hostname_realms (
|
|
krb5_context /*context*/,
|
|
const char */*orig_hostname*/,
|
|
char **/*new_hostname*/,
|
|
char ***/*realms*/);
|
|
|
|
PA_DATA *
|
|
heim_krb5_find_padata (
|
|
PA_DATA */*val*/,
|
|
unsigned /*len*/,
|
|
int /*type*/,
|
|
int */*idx*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_format_time (
|
|
krb5_context /*context*/,
|
|
time_t /*t*/,
|
|
char */*s*/,
|
|
size_t /*len*/,
|
|
krb5_boolean /*include_time*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_free_address (
|
|
krb5_context /*context*/,
|
|
krb5_address */*address*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_free_addresses (
|
|
krb5_context /*context*/,
|
|
krb5_addresses */*addresses*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_ap_rep_enc_part (
|
|
krb5_context /*context*/,
|
|
krb5_ap_rep_enc_part */*val*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_authenticator (
|
|
krb5_context /*context*/,
|
|
krb5_authenticator */*authenticator*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_checksum (
|
|
krb5_context /*context*/,
|
|
krb5_checksum */*cksum*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_checksum_contents (
|
|
krb5_context /*context*/,
|
|
krb5_checksum */*cksum*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_config_files (char **/*filenames*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_context (krb5_context /*context*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_free_cred_contents (
|
|
krb5_context /*context*/,
|
|
krb5_creds */*c*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_free_creds (
|
|
krb5_context /*context*/,
|
|
krb5_creds */*c*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_free_creds_contents (
|
|
krb5_context /*context*/,
|
|
krb5_creds */*c*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_data (
|
|
krb5_context /*context*/,
|
|
krb5_data */*p*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_data_contents (
|
|
krb5_context /*context*/,
|
|
krb5_data */*data*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_error (
|
|
krb5_context /*context*/,
|
|
krb5_error */*error*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_error_contents (
|
|
krb5_context /*context*/,
|
|
krb5_error */*error*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_error_message (
|
|
krb5_context /*context*/,
|
|
const char */*msg*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_error_string (
|
|
krb5_context /*context*/,
|
|
char */*str*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_free_host_realm (
|
|
krb5_context /*context*/,
|
|
krb5_realm */*realmlist*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_free_kdc_rep (
|
|
krb5_context /*context*/,
|
|
krb5_kdc_rep */*rep*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_keyblock (
|
|
krb5_context /*context*/,
|
|
krb5_keyblock */*keyblock*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_keyblock_contents (
|
|
krb5_context /*context*/,
|
|
krb5_keyblock */*keyblock*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_free_krbhst (
|
|
krb5_context /*context*/,
|
|
char **/*hostlist*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_free_principal (
|
|
krb5_context /*context*/,
|
|
krb5_principal /*p*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_free_salt (
|
|
krb5_context /*context*/,
|
|
krb5_salt /*salt*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_free_ticket (
|
|
krb5_context /*context*/,
|
|
krb5_ticket */*ticket*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_fwd_tgt_creds (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
const char */*hostname*/,
|
|
krb5_principal /*client*/,
|
|
krb5_principal /*server*/,
|
|
krb5_ccache /*ccache*/,
|
|
int /*forwardable*/,
|
|
krb5_data */*out_data*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_generate_random_block (
|
|
void */*buf*/,
|
|
size_t /*len*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_generate_random_keyblock (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*type*/,
|
|
krb5_keyblock */*key*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_generate_seq_number (
|
|
krb5_context /*context*/,
|
|
const krb5_keyblock */*key*/,
|
|
uint32_t */*seqno*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_generate_subkey (
|
|
krb5_context /*context*/,
|
|
const krb5_keyblock */*key*/,
|
|
krb5_keyblock **/*subkey*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_generate_subkey_extended (
|
|
krb5_context /*context*/,
|
|
const krb5_keyblock */*key*/,
|
|
krb5_enctype /*etype*/,
|
|
krb5_keyblock **/*subkey*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_all_client_addrs (
|
|
krb5_context /*context*/,
|
|
krb5_addresses */*res*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_all_server_addrs (
|
|
krb5_context /*context*/,
|
|
krb5_addresses */*res*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_cred_from_kdc (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_creds */*in_creds*/,
|
|
krb5_creds **/*out_creds*/,
|
|
krb5_creds ***/*ret_tgts*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_cred_from_kdc_opt (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_creds */*in_creds*/,
|
|
krb5_creds **/*out_creds*/,
|
|
krb5_creds ***/*ret_tgts*/,
|
|
krb5_flags /*flags*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_credentials (
|
|
krb5_context /*context*/,
|
|
krb5_flags /*options*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_creds */*in_creds*/,
|
|
krb5_creds **/*out_creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_credentials_with_flags (
|
|
krb5_context /*context*/,
|
|
krb5_flags /*options*/,
|
|
krb5_kdc_flags /*flags*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_creds */*in_creds*/,
|
|
krb5_creds **/*out_creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_creds (
|
|
krb5_context /*context*/,
|
|
krb5_get_creds_opt /*opt*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_const_principal /*inprinc*/,
|
|
krb5_creds **/*out_creds*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_creds_opt_add_options (
|
|
krb5_context /*context*/,
|
|
krb5_get_creds_opt /*opt*/,
|
|
krb5_flags /*options*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_creds_opt_alloc (
|
|
krb5_context /*context*/,
|
|
krb5_get_creds_opt */*opt*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_creds_opt_free (
|
|
krb5_context /*context*/,
|
|
krb5_get_creds_opt /*opt*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_creds_opt_set_enctype (
|
|
krb5_context /*context*/,
|
|
krb5_get_creds_opt /*opt*/,
|
|
krb5_enctype /*enctype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_creds_opt_set_impersonate (
|
|
krb5_context /*context*/,
|
|
krb5_get_creds_opt /*opt*/,
|
|
krb5_const_principal /*self*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_creds_opt_set_options (
|
|
krb5_context /*context*/,
|
|
krb5_get_creds_opt /*opt*/,
|
|
krb5_flags /*options*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_creds_opt_set_ticket (
|
|
krb5_context /*context*/,
|
|
krb5_get_creds_opt /*opt*/,
|
|
const Ticket */*ticket*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_default_config_files (char ***/*pfilenames*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_default_in_tkt_etypes (
|
|
krb5_context /*context*/,
|
|
krb5_enctype **/*etypes*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_default_principal (
|
|
krb5_context /*context*/,
|
|
krb5_principal */*princ*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_default_realm (
|
|
krb5_context /*context*/,
|
|
krb5_realm */*realm*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_default_realms (
|
|
krb5_context /*context*/,
|
|
krb5_realm **/*realms*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_get_dns_canonicalize_hostname (krb5_context /*context*/);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_get_err_text (
|
|
krb5_context /*context*/,
|
|
krb5_error_code /*code*/);
|
|
|
|
const char * KRB5_LIB_FUNCTION
|
|
heim_krb5_get_error_message (
|
|
krb5_context /*context*/,
|
|
krb5_error_code /*code*/);
|
|
|
|
char * KRB5_LIB_FUNCTION
|
|
heim_krb5_get_error_string (krb5_context /*context*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_extra_addresses (
|
|
krb5_context /*context*/,
|
|
krb5_addresses */*addresses*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_fcache_version (
|
|
krb5_context /*context*/,
|
|
int */*version*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_forwarded_creds (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_flags /*flags*/,
|
|
const char */*hostname*/,
|
|
krb5_creds */*in_creds*/,
|
|
krb5_data */*out_data*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_host_realm (
|
|
krb5_context /*context*/,
|
|
const char */*targethost*/,
|
|
krb5_realm **/*realms*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_ignore_addresses (
|
|
krb5_context /*context*/,
|
|
krb5_addresses */*addresses*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_in_cred (
|
|
krb5_context /*context*/,
|
|
krb5_flags /*options*/,
|
|
const krb5_addresses */*addrs*/,
|
|
const krb5_enctype */*etypes*/,
|
|
const krb5_preauthtype */*ptypes*/,
|
|
const krb5_preauthdata */*preauth*/,
|
|
krb5_key_proc /*key_proc*/,
|
|
krb5_const_pointer /*keyseed*/,
|
|
krb5_decrypt_proc /*decrypt_proc*/,
|
|
krb5_const_pointer /*decryptarg*/,
|
|
krb5_creds */*creds*/,
|
|
krb5_kdc_rep */*ret_as_reply*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_in_tkt (
|
|
krb5_context /*context*/,
|
|
krb5_flags /*options*/,
|
|
const krb5_addresses */*addrs*/,
|
|
const krb5_enctype */*etypes*/,
|
|
const krb5_preauthtype */*ptypes*/,
|
|
krb5_key_proc /*key_proc*/,
|
|
krb5_const_pointer /*keyseed*/,
|
|
krb5_decrypt_proc /*decrypt_proc*/,
|
|
krb5_const_pointer /*decryptarg*/,
|
|
krb5_creds */*creds*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_kdc_rep */*ret_as_reply*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_in_tkt_with_keytab (
|
|
krb5_context /*context*/,
|
|
krb5_flags /*options*/,
|
|
krb5_addresses */*addrs*/,
|
|
const krb5_enctype */*etypes*/,
|
|
const krb5_preauthtype */*pre_auth_types*/,
|
|
krb5_keytab /*keytab*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_creds */*creds*/,
|
|
krb5_kdc_rep */*ret_as_reply*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_in_tkt_with_password (
|
|
krb5_context /*context*/,
|
|
krb5_flags /*options*/,
|
|
krb5_addresses */*addrs*/,
|
|
const krb5_enctype */*etypes*/,
|
|
const krb5_preauthtype */*pre_auth_types*/,
|
|
const char */*password*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_creds */*creds*/,
|
|
krb5_kdc_rep */*ret_as_reply*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_in_tkt_with_skey (
|
|
krb5_context /*context*/,
|
|
krb5_flags /*options*/,
|
|
krb5_addresses */*addrs*/,
|
|
const krb5_enctype */*etypes*/,
|
|
const krb5_preauthtype */*pre_auth_types*/,
|
|
const krb5_keyblock */*key*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_creds */*creds*/,
|
|
krb5_kdc_rep */*ret_as_reply*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_keyblock (
|
|
krb5_context /*context*/,
|
|
krb5_creds */*creds*/,
|
|
krb5_principal /*client*/,
|
|
krb5_keyblock */*keyblock*/,
|
|
krb5_deltat /*start_time*/,
|
|
const char */*in_tkt_service*/,
|
|
krb5_get_init_creds_opt */*options*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_keytab (
|
|
krb5_context /*context*/,
|
|
krb5_creds */*creds*/,
|
|
krb5_principal /*client*/,
|
|
krb5_keytab /*keytab*/,
|
|
krb5_deltat /*start_time*/,
|
|
const char */*in_tkt_service*/,
|
|
krb5_get_init_creds_opt */*options*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_alloc (
|
|
krb5_context /*context*/,
|
|
krb5_get_init_creds_opt **/*opt*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_free (
|
|
krb5_context /*context*/,
|
|
krb5_get_init_creds_opt */*opt*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_get_error (
|
|
krb5_context /*context*/,
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
KRB_ERROR **/*error*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_init (krb5_get_init_creds_opt */*opt*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_address_list (
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
krb5_addresses */*addresses*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_addressless (
|
|
krb5_context /*context*/,
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
krb5_boolean /*addressless*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_anonymous (
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
int /*anonymous*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_canonicalize (
|
|
krb5_context /*context*/,
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
krb5_boolean /*req*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_default_flags (
|
|
krb5_context /*context*/,
|
|
const char */*appname*/,
|
|
krb5_const_realm /*realm*/,
|
|
krb5_get_init_creds_opt */*opt*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_etype_list (
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
krb5_enctype */*etype_list*/,
|
|
int /*etype_list_length*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_forwardable (
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
int /*forwardable*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_pa_password (
|
|
krb5_context /*context*/,
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
const char */*password*/,
|
|
krb5_s2k_proc /*key_proc*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_pac_request (
|
|
krb5_context /*context*/,
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
krb5_boolean /*req_pac*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_pkinit (
|
|
krb5_context /*context*/,
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
krb5_principal /*principal*/,
|
|
const char */*user_id*/,
|
|
const char */*x509_anchors*/,
|
|
char * const * /*pool*/,
|
|
char * const * /*pki_revoke*/,
|
|
int /*flags*/,
|
|
krb5_prompter_fct /*prompter*/,
|
|
void */*prompter_data*/,
|
|
char */*password*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_preauth_list (
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
krb5_preauthtype */*preauth_list*/,
|
|
int /*preauth_list_length*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_process_last_req (
|
|
krb5_context /*context*/,
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
krb5_gic_process_last_req /*func*/,
|
|
void */*ctx*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_proxiable (
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
int /*proxiable*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_renew_life (
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
krb5_deltat /*renew_life*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_salt (
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
krb5_data */*salt*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_tkt_life (
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
krb5_deltat /*tkt_life*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_opt_set_win2k (
|
|
krb5_context /*context*/,
|
|
krb5_get_init_creds_opt */*opt*/,
|
|
krb5_boolean /*req*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_init_creds_password (
|
|
krb5_context /*context*/,
|
|
krb5_creds */*creds*/,
|
|
krb5_principal /*client*/,
|
|
const char */*password*/,
|
|
krb5_prompter_fct /*prompter*/,
|
|
void */*data*/,
|
|
krb5_deltat /*start_time*/,
|
|
const char */*in_tkt_service*/,
|
|
krb5_get_init_creds_opt */*options*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_kdc_cred (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*id*/,
|
|
krb5_kdc_flags /*flags*/,
|
|
krb5_addresses */*addresses*/,
|
|
Ticket */*second_ticket*/,
|
|
krb5_creds */*in_creds*/,
|
|
krb5_creds **out_creds );
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_kdc_sec_offset (
|
|
krb5_context /*context*/,
|
|
int32_t */*sec*/,
|
|
int32_t */*usec*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_krb524hst (
|
|
krb5_context /*context*/,
|
|
const krb5_realm */*realm*/,
|
|
char ***/*hostlist*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_krb_admin_hst (
|
|
krb5_context /*context*/,
|
|
const krb5_realm */*realm*/,
|
|
char ***/*hostlist*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_krb_changepw_hst (
|
|
krb5_context /*context*/,
|
|
const krb5_realm */*realm*/,
|
|
char ***/*hostlist*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_krbhst (
|
|
krb5_context /*context*/,
|
|
const krb5_realm */*realm*/,
|
|
char ***/*hostlist*/);
|
|
|
|
time_t KRB5_LIB_FUNCTION
|
|
heim_krb5_get_max_time_skew (krb5_context /*context*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_pw_salt (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*principal*/,
|
|
krb5_salt */*salt*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_renewed_creds (
|
|
krb5_context /*context*/,
|
|
krb5_creds */*creds*/,
|
|
krb5_const_principal /*client*/,
|
|
krb5_ccache /*ccache*/,
|
|
const char */*in_tkt_service*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_server_rcache (
|
|
krb5_context /*context*/,
|
|
const krb5_data */*piece*/,
|
|
krb5_rcache */*id*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_get_use_admin_kdc (krb5_context /*context*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_get_validated_creds (
|
|
krb5_context /*context*/,
|
|
krb5_creds */*creds*/,
|
|
krb5_principal /*client*/,
|
|
krb5_ccache /*ccache*/,
|
|
char */*service*/);
|
|
|
|
krb5_log_facility * KRB5_LIB_FUNCTION
|
|
heim_krb5_get_warn_dest (krb5_context /*context*/);
|
|
|
|
size_t
|
|
heim_krb5_get_wrapped_length (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
size_t /*data_len*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_getportbyname (
|
|
krb5_context /*context*/,
|
|
const char */*service*/,
|
|
const char */*proto*/,
|
|
int /*default_port*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_h_addr2addr (
|
|
krb5_context /*context*/,
|
|
int /*af*/,
|
|
const char */*haddr*/,
|
|
krb5_address */*addr*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_h_addr2sockaddr (
|
|
krb5_context /*context*/,
|
|
int /*af*/,
|
|
const char */*addr*/,
|
|
struct sockaddr */*sa*/,
|
|
krb5_socklen_t */*sa_size*/,
|
|
int /*port*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_h_errno_to_heim_errno (int /*eai_errno*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_have_error_string (krb5_context /*context*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_hmac (
|
|
krb5_context /*context*/,
|
|
krb5_cksumtype /*cktype*/,
|
|
const void */*data*/,
|
|
size_t /*len*/,
|
|
unsigned /*usage*/,
|
|
krb5_keyblock */*key*/,
|
|
Checksum */*result*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_init_context (krb5_context */*context*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_init_context_flags(unsigned int /*flags*/, krb5_context */*context*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_init_creds_free (
|
|
krb5_context /*context*/,
|
|
krb5_init_creds_context /*ctx*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_init_creds_get (
|
|
krb5_context /*context*/,
|
|
krb5_init_creds_context /*ctx*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_init_creds_get_creds (
|
|
krb5_context /*context*/,
|
|
krb5_init_creds_context /*ctx*/,
|
|
krb5_creds */*cred*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_init_creds_get_error (
|
|
krb5_context /*context*/,
|
|
krb5_init_creds_context /*ctx*/,
|
|
KRB_ERROR */*error*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_init_creds_init (
|
|
krb5_context /*context*/,
|
|
krb5_principal /*client*/,
|
|
krb5_prompter_fct /*prompter*/,
|
|
void */*prompter_data*/,
|
|
krb5_deltat /*start_time*/,
|
|
krb5_get_init_creds_opt */*options*/,
|
|
krb5_init_creds_context */*rctx*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_init_creds_set_keyblock (
|
|
krb5_context /*context*/,
|
|
krb5_init_creds_context /*ctx*/,
|
|
krb5_keyblock */*keyblock*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_init_creds_set_keytab (
|
|
krb5_context /*context*/,
|
|
krb5_init_creds_context /*ctx*/,
|
|
krb5_keytab /*keytab*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_init_creds_set_password (
|
|
krb5_context /*context*/,
|
|
krb5_init_creds_context /*ctx*/,
|
|
const char */*password*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_init_creds_set_service (
|
|
krb5_context /*context*/,
|
|
krb5_init_creds_context /*ctx*/,
|
|
const char */*service*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_init_creds_step (
|
|
krb5_context /*context*/,
|
|
krb5_init_creds_context /*ctx*/,
|
|
krb5_data */*in*/,
|
|
krb5_data */*out*/,
|
|
krb5_krbhst_info */*hostinfo*/,
|
|
unsigned int */*flags*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_init_ets (krb5_context /*context*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_init_etype (
|
|
krb5_context /*context*/,
|
|
unsigned */*len*/,
|
|
krb5_enctype **/*val*/,
|
|
const krb5_enctype */*etypes*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_initlog (
|
|
krb5_context /*context*/,
|
|
const char */*program*/,
|
|
krb5_log_facility **/*fac*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_is_config_principal (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*principal*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_is_thread_safe (void);
|
|
|
|
const krb5_enctype * KRB5_LIB_FUNCTION
|
|
heim_krb5_kerberos_enctypes (krb5_context /*context*/);
|
|
|
|
krb5_enctype
|
|
heim_krb5_keyblock_get_enctype (const krb5_keyblock */*block*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_keyblock_init (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*type*/,
|
|
const void */*data*/,
|
|
size_t /*size*/,
|
|
krb5_keyblock */*key*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_keyblock_key_proc (
|
|
krb5_context /*context*/,
|
|
krb5_keytype /*type*/,
|
|
krb5_data */*salt*/,
|
|
krb5_const_pointer /*keyseed*/,
|
|
krb5_keyblock **/*key*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_keyblock_zero (krb5_keyblock */*keyblock*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_keytab_key_proc (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*enctype*/,
|
|
krb5_salt /*salt*/,
|
|
krb5_const_pointer /*keyseed*/,
|
|
krb5_keyblock **/*key*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_keytype_to_enctypes (
|
|
krb5_context /*context*/,
|
|
krb5_keytype /*keytype*/,
|
|
unsigned */*len*/,
|
|
krb5_enctype **/*val*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_keytype_to_enctypes_default (
|
|
krb5_context /*context*/,
|
|
krb5_keytype /*keytype*/,
|
|
unsigned */*len*/,
|
|
krb5_enctype **/*val*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_keytype_to_string (
|
|
krb5_context /*context*/,
|
|
krb5_keytype /*keytype*/,
|
|
char **/*string*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_krbhst_format_string (
|
|
krb5_context /*context*/,
|
|
const krb5_krbhst_info */*host*/,
|
|
char */*hostname*/,
|
|
size_t /*hostlen*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_krbhst_free (
|
|
krb5_context /*context*/,
|
|
krb5_krbhst_handle /*handle*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_krbhst_get_addrinfo (
|
|
krb5_context /*context*/,
|
|
krb5_krbhst_info */*host*/,
|
|
struct addrinfo **/*ai*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_krbhst_init (
|
|
krb5_context /*context*/,
|
|
const char */*realm*/,
|
|
unsigned int /*type*/,
|
|
krb5_krbhst_handle */*handle*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_krbhst_init_flags (
|
|
krb5_context /*context*/,
|
|
const char */*realm*/,
|
|
unsigned int /*type*/,
|
|
int /*flags*/,
|
|
krb5_krbhst_handle */*handle*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_krbhst_next (
|
|
krb5_context /*context*/,
|
|
krb5_krbhst_handle /*handle*/,
|
|
krb5_krbhst_info **/*host*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_krbhst_next_as_string (
|
|
krb5_context /*context*/,
|
|
krb5_krbhst_handle /*handle*/,
|
|
char */*hostname*/,
|
|
size_t /*hostlen*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_krbhst_reset (
|
|
krb5_context /*context*/,
|
|
krb5_krbhst_handle /*handle*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_add_entry (
|
|
krb5_context /*context*/,
|
|
krb5_keytab /*id*/,
|
|
krb5_keytab_entry */*entry*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_close (
|
|
krb5_context /*context*/,
|
|
krb5_keytab /*id*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_compare (
|
|
krb5_context /*context*/,
|
|
krb5_keytab_entry */*entry*/,
|
|
krb5_const_principal /*principal*/,
|
|
krb5_kvno /*vno*/,
|
|
krb5_enctype /*enctype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_copy_entry_contents (
|
|
krb5_context /*context*/,
|
|
const krb5_keytab_entry */*in*/,
|
|
krb5_keytab_entry */*out*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_default (
|
|
krb5_context /*context*/,
|
|
krb5_keytab */*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_default_modify_name (
|
|
krb5_context /*context*/,
|
|
char */*name*/,
|
|
size_t /*namesize*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_default_name (
|
|
krb5_context /*context*/,
|
|
char */*name*/,
|
|
size_t /*namesize*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_destroy (
|
|
krb5_context /*context*/,
|
|
krb5_keytab /*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_end_seq_get (
|
|
krb5_context /*context*/,
|
|
krb5_keytab /*id*/,
|
|
krb5_kt_cursor */*cursor*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_free_entry (
|
|
krb5_context /*context*/,
|
|
krb5_keytab_entry */*entry*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_get_entry (
|
|
krb5_context /*context*/,
|
|
krb5_keytab /*id*/,
|
|
krb5_const_principal /*principal*/,
|
|
krb5_kvno /*kvno*/,
|
|
krb5_enctype /*enctype*/,
|
|
krb5_keytab_entry */*entry*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_get_full_name (
|
|
krb5_context /*context*/,
|
|
krb5_keytab /*keytab*/,
|
|
char **/*str*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_get_name (
|
|
krb5_context /*context*/,
|
|
krb5_keytab /*keytab*/,
|
|
char */*name*/,
|
|
size_t /*namesize*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_get_type (
|
|
krb5_context /*context*/,
|
|
krb5_keytab /*keytab*/,
|
|
char */*prefix*/,
|
|
size_t /*prefixsize*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_next_entry (
|
|
krb5_context /*context*/,
|
|
krb5_keytab /*id*/,
|
|
krb5_keytab_entry */*entry*/,
|
|
krb5_kt_cursor */*cursor*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_read_service_key (
|
|
krb5_context /*context*/,
|
|
krb5_pointer /*keyprocarg*/,
|
|
krb5_principal /*principal*/,
|
|
krb5_kvno /*vno*/,
|
|
krb5_enctype /*enctype*/,
|
|
krb5_keyblock **/*key*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_register (
|
|
krb5_context /*context*/,
|
|
const krb5_kt_ops */*ops*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_remove_entry (
|
|
krb5_context /*context*/,
|
|
krb5_keytab /*id*/,
|
|
krb5_keytab_entry */*entry*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_resolve (
|
|
krb5_context /*context*/,
|
|
const char */*name*/,
|
|
krb5_keytab */*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_kt_start_seq_get (
|
|
krb5_context /*context*/,
|
|
krb5_keytab /*id*/,
|
|
krb5_kt_cursor */*cursor*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_kuserok (
|
|
krb5_context /*context*/,
|
|
krb5_principal /*principal*/,
|
|
const char */*luser*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_log (
|
|
krb5_context /*context*/,
|
|
krb5_log_facility */*fac*/,
|
|
int /*level*/,
|
|
const char */*fmt*/,
|
|
...)
|
|
__attribute__((format (printf, 4, 5)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_log_msg (
|
|
krb5_context /*context*/,
|
|
krb5_log_facility */*fac*/,
|
|
int /*level*/,
|
|
char **/*reply*/,
|
|
const char */*fmt*/,
|
|
...)
|
|
__attribute__((format (printf, 5, 6)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_make_addrport (
|
|
krb5_context /*context*/,
|
|
krb5_address **/*res*/,
|
|
const krb5_address */*addr*/,
|
|
int16_t /*port*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_make_principal (
|
|
krb5_context /*context*/,
|
|
krb5_principal */*principal*/,
|
|
krb5_const_realm /*realm*/,
|
|
...);
|
|
|
|
size_t KRB5_LIB_FUNCTION
|
|
heim_krb5_max_sockaddr_size (void);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_mk_error (
|
|
krb5_context /*context*/,
|
|
krb5_error_code /*error_code*/,
|
|
const char */*e_text*/,
|
|
const krb5_data */*e_data*/,
|
|
const krb5_principal /*client*/,
|
|
const krb5_principal /*server*/,
|
|
time_t */*client_time*/,
|
|
int */*client_usec*/,
|
|
krb5_data */*reply*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_mk_priv (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
const krb5_data */*userdata*/,
|
|
krb5_data */*outbuf*/,
|
|
krb5_replay_data */*outdata*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_mk_rep (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_data */*outbuf*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_mk_req (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context */*auth_context*/,
|
|
const krb5_flags /*ap_req_options*/,
|
|
const char */*service*/,
|
|
const char */*hostname*/,
|
|
krb5_data */*in_data*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_data */*outbuf*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_mk_req_exact (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context */*auth_context*/,
|
|
const krb5_flags /*ap_req_options*/,
|
|
const krb5_principal /*server*/,
|
|
krb5_data */*in_data*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_data */*outbuf*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_mk_req_extended (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context */*auth_context*/,
|
|
const krb5_flags /*ap_req_options*/,
|
|
krb5_data */*in_data*/,
|
|
krb5_creds */*in_creds*/,
|
|
krb5_data */*outbuf*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_mk_safe (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
const krb5_data */*userdata*/,
|
|
krb5_data */*outbuf*/,
|
|
krb5_replay_data */*outdata*/);
|
|
|
|
krb5_ssize_t KRB5_LIB_FUNCTION
|
|
heim_krb5_net_read (
|
|
krb5_context /*context*/,
|
|
void */*p_fd*/,
|
|
void */*buf*/,
|
|
size_t /*len*/);
|
|
|
|
krb5_ssize_t KRB5_LIB_FUNCTION
|
|
heim_krb5_net_write (
|
|
krb5_context /*context*/,
|
|
void */*p_fd*/,
|
|
const void */*buf*/,
|
|
size_t /*len*/);
|
|
|
|
krb5_ssize_t KRB5_LIB_FUNCTION
|
|
heim_krb5_net_write_block (
|
|
krb5_context /*context*/,
|
|
void */*p_fd*/,
|
|
const void */*buf*/,
|
|
size_t /*len*/,
|
|
time_t /*timeout*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_alloc (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm */*ntlm*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_free (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_init_get_challange (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
krb5_data */*challange*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_init_get_flags (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
uint32_t */*flags*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_init_get_opaque (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
krb5_data */*opaque*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_init_get_targetinfo (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_init_get_targetname (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
char **/*name*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_init_request (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
krb5_realm /*realm*/,
|
|
krb5_ccache /*ccache*/,
|
|
uint32_t /*flags*/,
|
|
const char */*hostname*/,
|
|
const char */*domainname*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_rep_get_sessionkey (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_boolean
|
|
heim_krb5_ntlm_rep_get_status (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_req_set_flags (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
uint32_t /*flags*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_req_set_lm (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
void */*hash*/,
|
|
size_t /*len*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_req_set_ntlm (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
void */*hash*/,
|
|
size_t /*len*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_req_set_opaque (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
krb5_data */*opaque*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_req_set_session (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
void */*sessionkey*/,
|
|
size_t /*length*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_req_set_targetname (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
const char */*targetname*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_req_set_username (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
const char */*username*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_ntlm_request (
|
|
krb5_context /*context*/,
|
|
krb5_ntlm /*ntlm*/,
|
|
krb5_realm /*realm*/,
|
|
krb5_ccache /*ccache*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_openlog (
|
|
krb5_context /*context*/,
|
|
const char */*program*/,
|
|
krb5_log_facility **/*fac*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_pac_add_buffer (
|
|
krb5_context /*context*/,
|
|
krb5_pac /*p*/,
|
|
uint32_t /*type*/,
|
|
const krb5_data */*data*/);
|
|
|
|
void
|
|
heim_krb5_pac_free (
|
|
krb5_context /*context*/,
|
|
krb5_pac /*pac*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_pac_get_buffer (
|
|
krb5_context /*context*/,
|
|
krb5_pac /*p*/,
|
|
uint32_t /*type*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_pac_get_types (
|
|
krb5_context /*context*/,
|
|
krb5_pac /*p*/,
|
|
size_t */*len*/,
|
|
uint32_t **/*types*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_pac_init (
|
|
krb5_context /*context*/,
|
|
krb5_pac */*pac*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_pac_parse (
|
|
krb5_context /*context*/,
|
|
const void */*ptr*/,
|
|
size_t /*len*/,
|
|
krb5_pac */*pac*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_pac_verify (
|
|
krb5_context /*context*/,
|
|
const krb5_pac /*pac*/,
|
|
time_t /*authtime*/,
|
|
krb5_const_principal /*principal*/,
|
|
const krb5_keyblock */*server*/,
|
|
const krb5_keyblock */*privsvr*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_padata_add (
|
|
krb5_context /*context*/,
|
|
METHOD_DATA */*md*/,
|
|
int /*type*/,
|
|
void */*buf*/,
|
|
size_t /*len*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_parse_address (
|
|
krb5_context /*context*/,
|
|
const char */*string*/,
|
|
krb5_addresses */*addresses*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_parse_name (
|
|
krb5_context /*context*/,
|
|
const char */*name*/,
|
|
krb5_principal */*principal*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_parse_name_flags (
|
|
krb5_context /*context*/,
|
|
const char */*name*/,
|
|
int /*flags*/,
|
|
krb5_principal */*principal*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_parse_nametype (
|
|
krb5_context /*context*/,
|
|
const char */*str*/,
|
|
int32_t */*nametype*/);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_passwd_result_to_string (
|
|
krb5_context /*context*/,
|
|
int /*result*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_password_key_proc (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*type*/,
|
|
krb5_salt /*salt*/,
|
|
krb5_const_pointer /*keyseed*/,
|
|
krb5_keyblock **/*key*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code
|
|
heim_krb5_plugin_register (
|
|
krb5_context /*context*/,
|
|
enum krb5_plugin_type /*type*/,
|
|
const char */*name*/,
|
|
void */*symbol*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_prepend_config_files (
|
|
const char */*filelist*/,
|
|
char **/*pq*/,
|
|
char ***/*ret_pp*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_prepend_config_files_default (
|
|
const char */*filelist*/,
|
|
char ***/*pfilenames*/);
|
|
|
|
krb5_realm * KRB5_LIB_FUNCTION
|
|
heim_krb5_princ_realm (
|
|
krb5_context /*context*/,
|
|
krb5_principal /*principal*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_princ_set_realm (
|
|
krb5_context /*context*/,
|
|
krb5_principal /*principal*/,
|
|
krb5_realm */*realm*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_principal_compare (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*princ1*/,
|
|
krb5_const_principal /*princ2*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_principal_compare_any_realm (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*princ1*/,
|
|
krb5_const_principal /*princ2*/);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_principal_get_comp_string (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*principal*/,
|
|
unsigned int /*component*/);
|
|
|
|
unsigned int KRB5_LIB_FUNCTION
|
|
heim_krb5_principal_get_num_comp (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*principal*/);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_principal_get_realm (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*principal*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_principal_get_type (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*principal*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_principal_match (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*princ*/,
|
|
krb5_const_principal /*pattern*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_principal_set_realm (
|
|
krb5_context /*context*/,
|
|
krb5_principal /*principal*/,
|
|
krb5_const_realm /*realm*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_principal_set_type (
|
|
krb5_context /*context*/,
|
|
krb5_principal /*principal*/,
|
|
int /*type*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_print_address (
|
|
const krb5_address */*addr*/,
|
|
char */*str*/,
|
|
size_t /*len*/,
|
|
size_t */*ret_len*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_program_setup (
|
|
krb5_context */*context*/,
|
|
int /*argc*/,
|
|
char **/*argv*/,
|
|
struct getargs */*args*/,
|
|
int /*num_args*/,
|
|
void (*/*usage*/)(int, struct getargs*, int));
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_prompter_posix (
|
|
krb5_context /*context*/,
|
|
void */*data*/,
|
|
const char */*name*/,
|
|
const char */*banner*/,
|
|
int /*num_prompts*/,
|
|
krb5_prompt prompts[]);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_random_to_key (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*type*/,
|
|
const void */*data*/,
|
|
size_t /*size*/,
|
|
krb5_keyblock */*key*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_close (
|
|
krb5_context /*context*/,
|
|
krb5_rcache /*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_default (
|
|
krb5_context /*context*/,
|
|
krb5_rcache */*id*/);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_default_name (krb5_context /*context*/);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_default_type (krb5_context /*context*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_destroy (
|
|
krb5_context /*context*/,
|
|
krb5_rcache /*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_expunge (
|
|
krb5_context /*context*/,
|
|
krb5_rcache /*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_get_lifespan (
|
|
krb5_context /*context*/,
|
|
krb5_rcache /*id*/,
|
|
krb5_deltat */*auth_lifespan*/);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_get_name (
|
|
krb5_context /*context*/,
|
|
krb5_rcache /*id*/);
|
|
|
|
const char* KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_get_type (
|
|
krb5_context /*context*/,
|
|
krb5_rcache /*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_initialize (
|
|
krb5_context /*context*/,
|
|
krb5_rcache /*id*/,
|
|
krb5_deltat /*auth_lifespan*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_recover (
|
|
krb5_context /*context*/,
|
|
krb5_rcache /*id*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_resolve (
|
|
krb5_context /*context*/,
|
|
krb5_rcache /*id*/,
|
|
const char */*name*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_resolve_full (
|
|
krb5_context /*context*/,
|
|
krb5_rcache */*id*/,
|
|
const char */*string_name*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_resolve_type (
|
|
krb5_context /*context*/,
|
|
krb5_rcache */*id*/,
|
|
const char */*type*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rc_store (
|
|
krb5_context /*context*/,
|
|
krb5_rcache /*id*/,
|
|
krb5_donot_replay */*rep*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_cred (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_data */*in_data*/,
|
|
krb5_creds ***/*ret_creds*/,
|
|
krb5_replay_data */*outdata*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_cred2 (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_data */*in_data*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_error (
|
|
krb5_context /*context*/,
|
|
const krb5_data */*msg*/,
|
|
KRB_ERROR */*result*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_priv (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
const krb5_data */*inbuf*/,
|
|
krb5_data */*outbuf*/,
|
|
krb5_replay_data */*outdata*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_rep (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
const krb5_data */*inbuf*/,
|
|
krb5_ap_rep_enc_part **/*repl*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_req (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context */*auth_context*/,
|
|
const krb5_data */*inbuf*/,
|
|
krb5_const_principal /*server*/,
|
|
krb5_keytab /*keytab*/,
|
|
krb5_flags */*ap_req_options*/,
|
|
krb5_ticket **/*ticket*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_req_ctx (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context */*auth_context*/,
|
|
const krb5_data */*inbuf*/,
|
|
krb5_const_principal /*server*/,
|
|
krb5_rd_req_in_ctx /*inctx*/,
|
|
krb5_rd_req_out_ctx */*outctx*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_req_in_ctx_alloc (
|
|
krb5_context /*context*/,
|
|
krb5_rd_req_in_ctx */*ctx*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_req_in_ctx_free (
|
|
krb5_context /*context*/,
|
|
krb5_rd_req_in_ctx /*ctx*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_req_in_set_keyblock (
|
|
krb5_context /*context*/,
|
|
krb5_rd_req_in_ctx /*in*/,
|
|
krb5_keyblock */*keyblock*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_req_in_set_keytab (
|
|
krb5_context /*context*/,
|
|
krb5_rd_req_in_ctx /*in*/,
|
|
krb5_keytab /*keytab*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_req_in_set_pac_check (
|
|
krb5_context /*context*/,
|
|
krb5_rd_req_in_ctx /*in*/,
|
|
krb5_boolean /*flag*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_req_out_ctx_free (
|
|
krb5_context /*context*/,
|
|
krb5_rd_req_out_ctx /*ctx*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_req_out_get_ap_req_options (
|
|
krb5_context /*context*/,
|
|
krb5_rd_req_out_ctx /*out*/,
|
|
krb5_flags */*ap_req_options*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_req_out_get_keyblock (
|
|
krb5_context /*context*/,
|
|
krb5_rd_req_out_ctx /*out*/,
|
|
krb5_keyblock **/*keyblock*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_req_out_get_server (
|
|
krb5_context /*context*/,
|
|
krb5_rd_req_out_ctx /*out*/,
|
|
krb5_principal */*principal*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_req_out_get_ticket (
|
|
krb5_context /*context*/,
|
|
krb5_rd_req_out_ctx /*out*/,
|
|
krb5_ticket **/*ticket*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_req_with_keyblock (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context */*auth_context*/,
|
|
const krb5_data */*inbuf*/,
|
|
krb5_const_principal /*server*/,
|
|
krb5_keyblock */*keyblock*/,
|
|
krb5_flags */*ap_req_options*/,
|
|
krb5_ticket **/*ticket*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_rd_safe (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*auth_context*/,
|
|
const krb5_data */*inbuf*/,
|
|
krb5_data */*outbuf*/,
|
|
krb5_replay_data */*outdata*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_read_message (
|
|
krb5_context /*context*/,
|
|
krb5_pointer /*p_fd*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_read_priv_message (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*ac*/,
|
|
krb5_pointer /*p_fd*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_read_safe_message (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*ac*/,
|
|
krb5_pointer /*p_fd*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_realm_compare (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*princ1*/,
|
|
krb5_const_principal /*princ2*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_recvauth (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context */*auth_context*/,
|
|
krb5_pointer /*p_fd*/,
|
|
const char */*appl_version*/,
|
|
krb5_principal /*server*/,
|
|
int32_t /*flags*/,
|
|
krb5_keytab /*keytab*/,
|
|
krb5_ticket **/*ticket*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_recvauth_match_version (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context */*auth_context*/,
|
|
krb5_pointer /*p_fd*/,
|
|
krb5_boolean (*/*match_appl_version*/)(const void *, const char*),
|
|
const void */*match_data*/,
|
|
krb5_principal /*server*/,
|
|
int32_t /*flags*/,
|
|
krb5_keytab /*keytab*/,
|
|
krb5_ticket **/*ticket*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_address (
|
|
krb5_storage */*sp*/,
|
|
krb5_address */*adr*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_addrs (
|
|
krb5_storage */*sp*/,
|
|
krb5_addresses */*adr*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_authdata (
|
|
krb5_storage */*sp*/,
|
|
krb5_authdata */*auth*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_creds (
|
|
krb5_storage */*sp*/,
|
|
krb5_creds */*creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_creds_tag (
|
|
krb5_storage */*sp*/,
|
|
krb5_creds */*creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_data (
|
|
krb5_storage */*sp*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_int16 (
|
|
krb5_storage */*sp*/,
|
|
int16_t */*value*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_int32 (
|
|
krb5_storage */*sp*/,
|
|
int32_t */*value*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_int8 (
|
|
krb5_storage */*sp*/,
|
|
int8_t */*value*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_keyblock (
|
|
krb5_storage */*sp*/,
|
|
krb5_keyblock */*p*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_principal (
|
|
krb5_storage */*sp*/,
|
|
krb5_principal */*princ*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_string (
|
|
krb5_storage */*sp*/,
|
|
char **/*string*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_stringnl (
|
|
krb5_storage */*sp*/,
|
|
char **/*string*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_stringz (
|
|
krb5_storage */*sp*/,
|
|
char **/*string*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_times (
|
|
krb5_storage */*sp*/,
|
|
krb5_times */*times*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_uint16 (
|
|
krb5_storage */*sp*/,
|
|
uint16_t */*value*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_uint32 (
|
|
krb5_storage */*sp*/,
|
|
uint32_t */*value*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ret_uint8 (
|
|
krb5_storage */*sp*/,
|
|
uint8_t */*value*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_salttype_to_string (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*etype*/,
|
|
krb5_salttype /*stype*/,
|
|
char **/*string*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_sendauth (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context */*auth_context*/,
|
|
krb5_pointer /*p_fd*/,
|
|
const char */*appl_version*/,
|
|
krb5_principal /*client*/,
|
|
krb5_principal /*server*/,
|
|
krb5_flags /*ap_req_options*/,
|
|
krb5_data */*in_data*/,
|
|
krb5_creds */*in_creds*/,
|
|
krb5_ccache /*ccache*/,
|
|
krb5_error **/*ret_error*/,
|
|
krb5_ap_rep_enc_part **/*rep_result*/,
|
|
krb5_creds **/*out_creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_sendto (
|
|
krb5_context /*context*/,
|
|
const krb5_data */*send_data*/,
|
|
krb5_krbhst_handle /*handle*/,
|
|
krb5_data */*receive*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_sendto_context (
|
|
krb5_context /*context*/,
|
|
krb5_sendto_ctx /*ctx*/,
|
|
const krb5_data */*send_data*/,
|
|
const krb5_realm /*realm*/,
|
|
krb5_data */*receive*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_sendto_ctx_add_flags (
|
|
krb5_sendto_ctx /*ctx*/,
|
|
int /*flags*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_sendto_ctx_alloc (
|
|
krb5_context /*context*/,
|
|
krb5_sendto_ctx */*ctx*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_sendto_ctx_free (
|
|
krb5_context /*context*/,
|
|
krb5_sendto_ctx /*ctx*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_sendto_ctx_get_flags (krb5_sendto_ctx /*ctx*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_sendto_ctx_set_func (
|
|
krb5_sendto_ctx /*ctx*/,
|
|
krb5_sendto_ctx_func /*func*/,
|
|
void */*data*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_sendto_ctx_set_type (
|
|
krb5_sendto_ctx /*ctx*/,
|
|
int /*type*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_sendto_kdc (
|
|
krb5_context /*context*/,
|
|
const krb5_data */*send_data*/,
|
|
const krb5_realm */*realm*/,
|
|
krb5_data */*receive*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_sendto_kdc_flags (
|
|
krb5_context /*context*/,
|
|
const krb5_data */*send_data*/,
|
|
const krb5_realm */*realm*/,
|
|
krb5_data */*receive*/,
|
|
int /*flags*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_set_config_files (
|
|
krb5_context /*context*/,
|
|
char **/*filenames*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_set_default_in_tkt_etypes (
|
|
krb5_context /*context*/,
|
|
const krb5_enctype */*etypes*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_set_default_realm (
|
|
krb5_context /*context*/,
|
|
const char */*realm*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_set_dns_canonicalize_hostname (
|
|
krb5_context /*context*/,
|
|
krb5_boolean /*flag*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_set_error_message (
|
|
krb5_context /*context*/,
|
|
krb5_error_code /*ret*/,
|
|
const char */*fmt*/,
|
|
...)
|
|
__attribute__ ((format (printf, 3, 4)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_set_error_string (
|
|
krb5_context /*context*/,
|
|
const char */*fmt*/,
|
|
...)
|
|
__attribute__((format (printf, 2, 3)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_set_extra_addresses (
|
|
krb5_context /*context*/,
|
|
const krb5_addresses */*addresses*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_set_fcache_version (
|
|
krb5_context /*context*/,
|
|
int /*version*/);
|
|
|
|
krb5_boolean
|
|
heim_krb5_set_home_dir_access (
|
|
krb5_context /*context*/,
|
|
krb5_boolean /*allow*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_set_ignore_addresses (
|
|
krb5_context /*context*/,
|
|
const krb5_addresses */*addresses*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_set_kdc_sec_offset (
|
|
krb5_context /*context*/,
|
|
int32_t /*sec*/,
|
|
int32_t /*usec*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_set_max_time_skew (
|
|
krb5_context /*context*/,
|
|
time_t /*t*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_set_password (
|
|
krb5_context /*context*/,
|
|
krb5_creds */*creds*/,
|
|
const char */*newpw*/,
|
|
krb5_principal /*targprinc*/,
|
|
int */*result_code*/,
|
|
krb5_data */*result_code_string*/,
|
|
krb5_data */*result_string*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_set_password_using_ccache (
|
|
krb5_context /*context*/,
|
|
krb5_ccache /*ccache*/,
|
|
const char */*newpw*/,
|
|
krb5_principal /*targprinc*/,
|
|
int */*result_code*/,
|
|
krb5_data */*result_code_string*/,
|
|
krb5_data */*result_string*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_set_real_time (
|
|
krb5_context /*context*/,
|
|
krb5_timestamp /*sec*/,
|
|
int32_t /*usec*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_set_send_to_kdc_func (
|
|
krb5_context /*context*/,
|
|
krb5_send_to_kdc_func /*func*/,
|
|
void */*data*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_set_use_admin_kdc (
|
|
krb5_context /*context*/,
|
|
krb5_boolean /*flag*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_set_warn_dest (
|
|
krb5_context /*context*/,
|
|
krb5_log_facility */*fac*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_sname_to_principal (
|
|
krb5_context /*context*/,
|
|
const char */*hostname*/,
|
|
const char */*sname*/,
|
|
int32_t /*type*/,
|
|
krb5_principal */*ret_princ*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_sock_to_principal (
|
|
krb5_context /*context*/,
|
|
int /*sock*/,
|
|
const char */*sname*/,
|
|
int32_t /*type*/,
|
|
krb5_principal */*ret_princ*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_sockaddr2address (
|
|
krb5_context /*context*/,
|
|
const struct sockaddr */*sa*/,
|
|
krb5_address */*addr*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_sockaddr2port (
|
|
krb5_context /*context*/,
|
|
const struct sockaddr */*sa*/,
|
|
int16_t */*port*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_sockaddr_uninteresting (const struct sockaddr */*sa*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_std_usage (
|
|
int /*code*/,
|
|
struct getargs */*args*/,
|
|
int /*num_args*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_clear_flags (
|
|
krb5_storage */*sp*/,
|
|
krb5_flags /*flags*/);
|
|
|
|
krb5_storage * KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_emem (void);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_free (krb5_storage */*sp*/);
|
|
|
|
krb5_storage * KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_from_data (krb5_data */*data*/);
|
|
|
|
krb5_storage * KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_from_fd (int /*fd*/);
|
|
|
|
krb5_storage * KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_from_mem (
|
|
void */*buf*/,
|
|
size_t /*len*/);
|
|
|
|
krb5_storage * KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_from_readonly_mem (
|
|
const void */*buf*/,
|
|
size_t /*len*/);
|
|
|
|
krb5_flags KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_get_byteorder (krb5_storage */*sp*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_get_eof_code (krb5_storage */*sp*/);
|
|
|
|
krb5_boolean KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_is_flags (
|
|
krb5_storage */*sp*/,
|
|
krb5_flags /*flags*/);
|
|
|
|
krb5_ssize_t KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_read (
|
|
krb5_storage */*sp*/,
|
|
void */*buf*/,
|
|
size_t /*len*/);
|
|
|
|
off_t KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_seek (
|
|
krb5_storage */*sp*/,
|
|
off_t /*offset*/,
|
|
int /*whence*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_set_byteorder (
|
|
krb5_storage */*sp*/,
|
|
krb5_flags /*byteorder*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_set_eof_code (
|
|
krb5_storage */*sp*/,
|
|
int /*code*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_set_flags (
|
|
krb5_storage */*sp*/,
|
|
krb5_flags /*flags*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_to_data (
|
|
krb5_storage */*sp*/,
|
|
krb5_data */*data*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_truncate (
|
|
krb5_storage */*sp*/,
|
|
off_t /*offset*/);
|
|
|
|
krb5_ssize_t KRB5_LIB_FUNCTION
|
|
heim_krb5_storage_write (
|
|
krb5_storage */*sp*/,
|
|
const void */*buf*/,
|
|
size_t /*len*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_address (
|
|
krb5_storage */*sp*/,
|
|
krb5_address /*p*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_addrs (
|
|
krb5_storage */*sp*/,
|
|
krb5_addresses /*p*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_authdata (
|
|
krb5_storage */*sp*/,
|
|
krb5_authdata /*auth*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_creds (
|
|
krb5_storage */*sp*/,
|
|
krb5_creds */*creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_creds_tag (
|
|
krb5_storage */*sp*/,
|
|
krb5_creds */*creds*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_data (
|
|
krb5_storage */*sp*/,
|
|
krb5_data /*data*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_int16 (
|
|
krb5_storage */*sp*/,
|
|
int16_t /*value*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_int32 (
|
|
krb5_storage */*sp*/,
|
|
int32_t /*value*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_int8 (
|
|
krb5_storage */*sp*/,
|
|
int8_t /*value*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_keyblock (
|
|
krb5_storage */*sp*/,
|
|
krb5_keyblock /*p*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_principal (
|
|
krb5_storage */*sp*/,
|
|
krb5_const_principal /*p*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_string (
|
|
krb5_storage */*sp*/,
|
|
const char */*s*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_stringnl (
|
|
krb5_storage */*sp*/,
|
|
const char */*s*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_stringz (
|
|
krb5_storage */*sp*/,
|
|
const char */*s*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_times (
|
|
krb5_storage */*sp*/,
|
|
krb5_times /*times*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_uint16 (
|
|
krb5_storage */*sp*/,
|
|
uint16_t /*value*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_uint32 (
|
|
krb5_storage */*sp*/,
|
|
uint32_t /*value*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_store_uint8 (
|
|
krb5_storage */*sp*/,
|
|
uint8_t /*value*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_string_to_deltat (
|
|
const char */*string*/,
|
|
krb5_deltat */*deltat*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_string_to_enctype (
|
|
krb5_context /*context*/,
|
|
const char */*string*/,
|
|
krb5_enctype */*etype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_string_to_key (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*enctype*/,
|
|
const char */*password*/,
|
|
krb5_principal /*principal*/,
|
|
krb5_keyblock */*key*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_string_to_key_data (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*enctype*/,
|
|
krb5_data /*password*/,
|
|
krb5_principal /*principal*/,
|
|
krb5_keyblock */*key*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_string_to_key_data_salt (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*enctype*/,
|
|
krb5_data /*password*/,
|
|
krb5_salt /*salt*/,
|
|
krb5_keyblock */*key*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_string_to_key_data_salt_opaque (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*enctype*/,
|
|
krb5_data /*password*/,
|
|
krb5_salt /*salt*/,
|
|
krb5_data /*opaque*/,
|
|
krb5_keyblock */*key*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_string_to_key_derived (
|
|
krb5_context /*context*/,
|
|
const void */*str*/,
|
|
size_t /*len*/,
|
|
krb5_enctype /*etype*/,
|
|
krb5_keyblock */*key*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_string_to_key_salt (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*enctype*/,
|
|
const char */*password*/,
|
|
krb5_salt /*salt*/,
|
|
krb5_keyblock */*key*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_string_to_key_salt_opaque (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*enctype*/,
|
|
const char */*password*/,
|
|
krb5_salt /*salt*/,
|
|
krb5_data /*opaque*/,
|
|
krb5_keyblock */*key*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_string_to_keytype (
|
|
krb5_context /*context*/,
|
|
const char */*string*/,
|
|
krb5_keytype */*keytype*/)
|
|
KRB5_DEPRECATED;
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_string_to_salttype (
|
|
krb5_context /*context*/,
|
|
krb5_enctype /*etype*/,
|
|
const char */*string*/,
|
|
krb5_salttype */*salttype*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ticket_get_authorization_data_type (
|
|
krb5_context /*context*/,
|
|
krb5_ticket */*ticket*/,
|
|
int /*type*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ticket_get_client (
|
|
krb5_context /*context*/,
|
|
const krb5_ticket */*ticket*/,
|
|
krb5_principal */*client*/);
|
|
|
|
time_t KRB5_LIB_FUNCTION
|
|
heim_krb5_ticket_get_endtime (
|
|
krb5_context /*context*/,
|
|
const krb5_ticket */*ticket*/);
|
|
|
|
unsigned long
|
|
heim_krb5_ticket_get_flags (
|
|
krb5_context /*context*/,
|
|
const krb5_ticket */*ticket*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_ticket_get_server (
|
|
krb5_context /*context*/,
|
|
const krb5_ticket */*ticket*/,
|
|
krb5_principal */*server*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_timeofday (
|
|
krb5_context /*context*/,
|
|
krb5_timestamp */*timeret*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_unparse_name (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*principal*/,
|
|
char **/*name*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_unparse_name_fixed (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*principal*/,
|
|
char */*name*/,
|
|
size_t /*len*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_unparse_name_fixed_flags (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*principal*/,
|
|
int /*flags*/,
|
|
char */*name*/,
|
|
size_t /*len*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_unparse_name_fixed_short (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*principal*/,
|
|
char */*name*/,
|
|
size_t /*len*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_unparse_name_flags (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*principal*/,
|
|
int /*flags*/,
|
|
char **/*name*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_unparse_name_short (
|
|
krb5_context /*context*/,
|
|
krb5_const_principal /*principal*/,
|
|
char **/*name*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_us_timeofday (
|
|
krb5_context /*context*/,
|
|
krb5_timestamp */*sec*/,
|
|
int32_t */*usec*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_vabort (
|
|
krb5_context /*context*/,
|
|
krb5_error_code /*code*/,
|
|
const char */*fmt*/,
|
|
va_list /*ap*/)
|
|
__attribute__ ((noreturn, format (printf, 3, 0)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_vabortx (
|
|
krb5_context /*context*/,
|
|
const char */*fmt*/,
|
|
va_list /*ap*/)
|
|
__attribute__ ((noreturn, format (printf, 2, 0)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_ap_req (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context */*auth_context*/,
|
|
krb5_ap_req */*ap_req*/,
|
|
krb5_const_principal /*server*/,
|
|
krb5_keyblock */*keyblock*/,
|
|
krb5_flags /*flags*/,
|
|
krb5_flags */*ap_req_options*/,
|
|
krb5_ticket **/*ticket*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_ap_req2 (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context */*auth_context*/,
|
|
krb5_ap_req */*ap_req*/,
|
|
krb5_const_principal /*server*/,
|
|
krb5_keyblock */*keyblock*/,
|
|
krb5_flags /*flags*/,
|
|
krb5_flags */*ap_req_options*/,
|
|
krb5_ticket **/*ticket*/,
|
|
krb5_key_usage /*usage*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_authenticator_checksum (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*ac*/,
|
|
void */*data*/,
|
|
size_t /*len*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_checksum (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
krb5_key_usage /*usage*/,
|
|
void */*data*/,
|
|
size_t /*len*/,
|
|
Checksum */*cksum*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_checksum_iov (
|
|
krb5_context /*context*/,
|
|
krb5_crypto /*crypto*/,
|
|
unsigned /*usage*/,
|
|
krb5_crypto_iov */*data*/,
|
|
unsigned int /*num_data*/,
|
|
krb5_cksumtype */*type*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_init_creds (
|
|
krb5_context /*context*/,
|
|
krb5_creds */*creds*/,
|
|
krb5_principal /*ap_req_server*/,
|
|
krb5_keytab /*ap_req_keytab*/,
|
|
krb5_ccache */*ccache*/,
|
|
krb5_verify_init_creds_opt */*options*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_init_creds_opt_init (krb5_verify_init_creds_opt */*options*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_init_creds_opt_set_ap_req_nofail (
|
|
krb5_verify_init_creds_opt */*options*/,
|
|
int /*ap_req_nofail*/);
|
|
|
|
int KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_opt_alloc (
|
|
krb5_context /*context*/,
|
|
krb5_verify_opt **/*opt*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_opt_free (krb5_verify_opt */*opt*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_opt_init (krb5_verify_opt */*opt*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_opt_set_ccache (
|
|
krb5_verify_opt */*opt*/,
|
|
krb5_ccache /*ccache*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_opt_set_flags (
|
|
krb5_verify_opt */*opt*/,
|
|
unsigned int /*flags*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_opt_set_keytab (
|
|
krb5_verify_opt */*opt*/,
|
|
krb5_keytab /*keytab*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_opt_set_secure (
|
|
krb5_verify_opt */*opt*/,
|
|
krb5_boolean /*secure*/);
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_opt_set_service (
|
|
krb5_verify_opt */*opt*/,
|
|
const char */*service*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_user (
|
|
krb5_context /*context*/,
|
|
krb5_principal /*principal*/,
|
|
krb5_ccache /*ccache*/,
|
|
const char */*password*/,
|
|
krb5_boolean /*secure*/,
|
|
const char */*service*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_user_lrealm (
|
|
krb5_context /*context*/,
|
|
krb5_principal /*principal*/,
|
|
krb5_ccache /*ccache*/,
|
|
const char */*password*/,
|
|
krb5_boolean /*secure*/,
|
|
const char */*service*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_verify_user_opt (
|
|
krb5_context /*context*/,
|
|
krb5_principal /*principal*/,
|
|
const char */*password*/,
|
|
krb5_verify_opt */*opt*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_verr (
|
|
krb5_context /*context*/,
|
|
int /*eval*/,
|
|
krb5_error_code /*code*/,
|
|
const char */*fmt*/,
|
|
va_list /*ap*/)
|
|
__attribute__ ((noreturn, format (printf, 4, 0)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_verrx (
|
|
krb5_context /*context*/,
|
|
int /*eval*/,
|
|
const char */*fmt*/,
|
|
va_list /*ap*/)
|
|
__attribute__ ((noreturn, format (printf, 3, 0)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_vlog (
|
|
krb5_context /*context*/,
|
|
krb5_log_facility */*fac*/,
|
|
int /*level*/,
|
|
const char */*fmt*/,
|
|
va_list /*ap*/)
|
|
__attribute__((format (printf, 4, 0)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_vlog_msg (
|
|
krb5_context /*context*/,
|
|
krb5_log_facility */*fac*/,
|
|
char **/*reply*/,
|
|
int /*level*/,
|
|
const char */*fmt*/,
|
|
va_list /*ap*/)
|
|
__attribute__((format (printf, 5, 0)));
|
|
|
|
void KRB5_LIB_FUNCTION
|
|
heim_krb5_vset_error_message (
|
|
krb5_context /*context*/,
|
|
krb5_error_code /*ret*/,
|
|
const char */*fmt*/,
|
|
va_list /*args*/)
|
|
__attribute__ ((format (printf, 3, 0)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_vset_error_string (
|
|
krb5_context /*context*/,
|
|
const char */*fmt*/,
|
|
va_list /*args*/)
|
|
__attribute__ ((format (printf, 2, 0)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_vwarn (
|
|
krb5_context /*context*/,
|
|
krb5_error_code /*code*/,
|
|
const char */*fmt*/,
|
|
va_list /*ap*/)
|
|
__attribute__ ((format (printf, 3, 0)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_vwarnx (
|
|
krb5_context /*context*/,
|
|
const char */*fmt*/,
|
|
va_list /*ap*/)
|
|
__attribute__ ((format (printf, 2, 0)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_warn (
|
|
krb5_context /*context*/,
|
|
krb5_error_code /*code*/,
|
|
const char */*fmt*/,
|
|
...)
|
|
__attribute__ ((format (printf, 3, 4)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_warnx (
|
|
krb5_context /*context*/,
|
|
const char */*fmt*/,
|
|
...)
|
|
__attribute__ ((format (printf, 2, 3)));
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_write_message (
|
|
krb5_context /*context*/,
|
|
krb5_pointer /*p_fd*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_write_priv_message (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*ac*/,
|
|
krb5_pointer /*p_fd*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_write_safe_message (
|
|
krb5_context /*context*/,
|
|
krb5_auth_context /*ac*/,
|
|
krb5_pointer /*p_fd*/,
|
|
krb5_data */*data*/);
|
|
|
|
krb5_error_code KRB5_LIB_FUNCTION
|
|
heim_krb5_xfree (void */*ptr*/);
|
|
|
|
krb5_error_code
|
|
heim_krb5_cc_set_kdc_offset(krb5_context context, krb5_ccache id, krb5_deltat offset);
|
|
|
|
krb5_error_code
|
|
heim_krb5_cc_get_kdc_offset(krb5_context context, krb5_ccache id, krb5_deltat *offset);
|
|
|
|
const char *
|
|
com_right (struct et_list */*list*/,
|
|
long /*code*/);
|
|
|
|
const char *
|
|
heim_com_right_r(struct et_list */*list*/,
|
|
long /*code*/,
|
|
char */*str*/,
|
|
size_t /*len*/);
|