try to load pseudo_random
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@20046 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1997 - 2006 Kungliga Tekniska H<>gskolan
|
* Copyright (c) 1997 - 2007 Kungliga Tekniska H<>gskolan
|
||||||
* (Royal Institute of Technology, Stockholm, Sweden).
|
* (Royal Institute of Technology, Stockholm, Sweden).
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
@@ -714,6 +714,23 @@ gss_inquire_cred_by_oid(OM_uint32 *minor_status,
|
|||||||
const gss_OID desired_object,
|
const gss_OID desired_object,
|
||||||
gss_buffer_set_t *data_set);
|
gss_buffer_set_t *data_set);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* RFC 4401
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define GSS_C_PRF_KEY_FULL 0
|
||||||
|
#define GSS_C_PRF_KEY_PARTIAL 1
|
||||||
|
|
||||||
|
OM_uint32
|
||||||
|
gss_pseudo_random
|
||||||
|
(OM_uint32 *minor_status,
|
||||||
|
gss_ctx_id_t context,
|
||||||
|
int prf_key,
|
||||||
|
const gss_buffer_t prf_in,
|
||||||
|
ssize_t desired_output_len,
|
||||||
|
gss_buffer_t prf_out
|
||||||
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The following routines are obsolete variants of gss_get_mic,
|
* The following routines are obsolete variants of gss_get_mic,
|
||||||
* gss_verify_mic, gss_wrap and gss_unwrap. They should be
|
* gss_verify_mic, gss_wrap and gss_unwrap. They should be
|
||||||
|
@@ -300,6 +300,7 @@ _gss_load_mech(void)
|
|||||||
OPTSYM(inquire_sec_context_by_oid);
|
OPTSYM(inquire_sec_context_by_oid);
|
||||||
OPTSYM(set_sec_context_option);
|
OPTSYM(set_sec_context_option);
|
||||||
OPTSYM(set_cred_option);
|
OPTSYM(set_cred_option);
|
||||||
|
OPTSYM(pseudo_random);
|
||||||
|
|
||||||
SLIST_INSERT_HEAD(&_gss_mechs, m, gm_link);
|
SLIST_INSERT_HEAD(&_gss_mechs, m, gm_link);
|
||||||
continue;
|
continue;
|
||||||
|
Reference in New Issue
Block a user