| /freebsd/crypto/krb5/src/lib/krb5/krb/ |
| H A D | recvauth.c | 59 krb5_rcache rcache = 0; in recvauth_common() local 132 krb5_auth_con_getrcache(context, *auth_context, &rcache); in recvauth_common() 133 if ((!problem) && rcache == NULL) { in recvauth_common() 134 problem = k5_rc_default(context, &rcache); in recvauth_common() 136 problem = krb5_auth_con_setrcache(context, *auth_context, rcache); in recvauth_common() 211 } else if (local_rcache && rcache != NULL) { in recvauth_common() 212 k5_rc_close(context, rcache); in recvauth_common()
|
| H A D | auth_con.c | 72 if (auth_context->rcache) in krb5_auth_con_free() 73 k5_rc_close(context, auth_context->rcache); in krb5_auth_con_free() 357 krb5_auth_con_setrcache(krb5_context context, krb5_auth_context auth_context, krb5_rcache rcache) in krb5_auth_con_setrcache() argument 359 auth_context->rcache = rcache; in krb5_auth_con_setrcache() 364 krb5_auth_con_getrcache(krb5_context context, krb5_auth_context auth_context, krb5_rcache *rcache) in krb5_auth_con_getrcache() argument 366 *rcache = auth_context->rcache; in krb5_auth_con_getrcache()
|
| H A D | auth_con.h | 25 krb5_rcache rcache; member
|
| H A D | rd_req_dec.c | 544 if (((*auth_context)->rcache == NULL) && in rd_req_decoded_opt() 546 retval = k5_rc_default(context, &(*auth_context)->rcache); in rd_req_decoded_opt() 620 if ((*auth_context)->rcache != NULL) { in rd_req_decoded_opt() 621 retval = k5_rc_store(context, (*auth_context)->rcache, in rd_req_decoded_opt()
|
| H A D | deps | 51 $(COM_ERR_DEPS) $(srcdir)/../rcache/memrcache.h $(top_srcdir)/include/k5-buf.h \ 74 $(COM_ERR_DEPS) $(srcdir)/../rcache/memrcache.h $(top_srcdir)/include/k5-buf.h \ 86 $(COM_ERR_DEPS) $(srcdir)/../rcache/memrcache.h $(top_srcdir)/include/k5-buf.h \ 98 $(COM_ERR_DEPS) $(srcdir)/../rcache/memrcache.h $(top_srcdir)/include/k5-buf.h \ 166 $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(srcdir)/../rcache/memrcache.h \ 223 $(COM_ERR_DEPS) $(srcdir)/../rcache/memrcache.h $(top_srcdir)/include/k5-buf.h \ 454 $(COM_ERR_DEPS) $(srcdir)/../rcache/memrcache.h $(top_srcdir)/include/k5-buf.h \ 629 $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(srcdir)/../rcache/memrcache.h \ 651 $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(srcdir)/../rcache/memrcache.h \ 662 $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) $(srcdir)/../rcache/memrcache.h \ [all …]
|
| /freebsd/crypto/krb5/src/lib/gssapi/krb5/ |
| H A D | export_cred.c | 129 json_rcache(krb5_context context, krb5_rcache rcache, k5_json_value *val_out) in json_rcache() argument 134 if (rcache == NULL) in json_rcache() 136 ret = k5_json_string_create(k5_rc_get_name(context, rcache), &str); in json_rcache() 382 k5_json_value name = NULL, imp = NULL, keytab = NULL, rcache = NULL; in json_kgcred() local 395 ret = json_rcache(context, cred->rcache, &rcache); in json_kgcred() 410 rcache, ccache, ckeytab, cred->have_tgt, in json_kgcred() 422 k5_json_release(rcache); in json_kgcred()
|
| H A D | rel_cred.c | 68 if (cred->rcache) in krb5_gss_release_cred() 69 k5_rc_close(context, cred->rcache); in krb5_gss_release_cred()
|
| H A D | acquire_cred.c | 236 cred->rcache = rc; in acquire_accept_cred() 910 if (cred->rcache) in acquire_cred_context() 911 k5_rc_close(context, cred->rcache); in acquire_cred_context() 1064 krb5_rcache rcache; in gss_krb5int_set_cred_rcache() local 1066 assert(value->length == sizeof(rcache)); in gss_krb5int_set_cred_rcache() 1068 if (value->length != sizeof(rcache)) in gss_krb5int_set_cred_rcache() 1071 rcache = (krb5_rcache)value->value; in gss_krb5int_set_cred_rcache() 1080 if (cred->rcache != NULL) in gss_krb5int_set_cred_rcache() 1081 k5_rc_close(context, cred->rcache); in gss_krb5int_set_cred_rcache() 1083 cred->rcache = rcache; in gss_krb5int_set_cred_rcache()
|
| H A D | krb5_gss_glue.c | 391 krb5_rcache rcache) in gss_krb5_set_cred_rcache() argument 399 req_buffer.length = sizeof(rcache); in gss_krb5_set_cred_rcache() 400 req_buffer.value = rcache; in gss_krb5_set_cred_rcache()
|
| H A D | import_cred.c | 167 krb5_rcache rcache; in json_to_rcache() local 174 if (k5_rc_resolve(context, (char *)k5_json_string_utf8(v), &rcache)) in json_to_rcache() 176 *rcache_out = rcache; in json_to_rcache() 550 if (json_to_rcache(context, k5_json_array_get(array, 6), &cred->rcache)) in json_to_kgcred()
|
| H A D | gssapi_krb5.h | 289 krb5_rcache rcache);
|
| H A D | accept_sec_context.c | 808 if (cred->rcache) { in kg_accept_krb5() 810 if ((code = krb5_auth_con_setrcache(context, auth_context, cred->rcache))) { in kg_accept_krb5()
|
| H A D | gssapiP_krb5.h | 187 krb5_rcache rcache; member
|
| /freebsd/crypto/krb5/src/lib/krb5/ |
| H A D | Makefile.in | 3 LOCALINCLUDES = -I$(srcdir)/ccache -I$(srcdir)/keytab -I$(srcdir)/rcache -I$(srcdir)/os -I$(srcdir)… 4 SUBDIRS= error_tables asn.1 ccache keytab krb os rcache unicode
|
| /freebsd/crypto/heimdal/lib/krb5/ |
| H A D | auth_context.c | 489 krb5_rcache *rcache) in krb5_auth_con_getrcache() argument 491 *rcache = auth_context->rcache; in krb5_auth_con_getrcache() 498 krb5_rcache rcache) in krb5_auth_con_setrcache() argument 500 auth_context->rcache = rcache; in krb5_auth_con_setrcache()
|
| H A D | replay.c | 298 krb5_rcache rcache; in krb5_get_server_rcache() local 322 ret = krb5_rc_resolve_full(context, &rcache, name); in krb5_get_server_rcache() 326 *id = rcache; in krb5_get_server_rcache()
|
| H A D | krb5.h | 640 krb5_rcache rcache; member
|
| H A D | krb5_err.et | 245 error_code KRB5_RC_REQUIRED, "Message replay detection requires rcache parameter"
|
| /freebsd/krb5/lib/krb5/rcache/ |
| H A D | Makefile.inc | 10 .PATH: ${KRB5_DIR}/lib/krb5/rcache
|
| /freebsd/crypto/krb5/src/lib/krb5/rcache/ |
| H A D | Makefile.in | 1 mydir=lib$(S)krb5$(S)rcache
|
| /freebsd/crypto/krb5/src/ |
| H A D | Makefile.in | 160 lib\krb5\rcache\Makefile \
|
| /freebsd/crypto/krb5/src/lib/krb5/error_tables/ |
| H A D | krb5_err.et | 299 error_code KRB5_RC_REQUIRED, "Message replay detection requires rcache parameter"
|
| /freebsd/crypto/krb5/src/po/ |
| H A D | de.po | 5096 #: ../../src/lib/krb5/rcache/rc_io.c:106 5101 #: ../../src/lib/krb5/rcache/rc_io.c:112 5110 #: ../../src/lib/krb5/rcache/rc_io.c:144 5115 #: ../../src/lib/krb5/rcache/rc_io.c:149 5120 #: ../../src/lib/krb5/rcache/rc_io.c:272 5125 #: ../../src/lib/krb5/rcache/rc_io.c:278 5127 msgid "rcache not owned by %d" 5130 #: ../../src/lib/krb5/rcache/rc_io.c:402 ../../src/lib/krb5/rcache/rc_io.c:406 5131 #: ../../src/lib/krb5/rcache/rc_io.c:411 5137 #: ../../src/lib/krb5/rcache/rc_io.c:432 [all …]
|
| /freebsd/crypto/krb5/src/include/krb5/ |
| H A D | krb5.hin | 2661 * begin "rcache.h" 2668 * end "rcache.h" 3968 * @param [out] rcptr Handle to an open rcache 4340 /* librc.spec--see rcache.h */ 5526 * KRB5_RC_REQUIRED Message replay detection requires @a rcache parameter 5552 * KRB5_RC_REQUIRED Message replay detection requires @a rcache parameter 6023 * @param [in] rcache Replay cache haddle 6025 * This function sets the replay cache in @a auth_context to @a rcache. @a 6026 * rcache will be closed when @a auth_context is freed, so the caller should 6033 krb5_rcache rcache); [all …]
|
| /freebsd/crypto/krb5/src/lib/krb5/os/ |
| H A D | deps | 53 $(srcdir)/../rcache/memrcache.h $(top_srcdir)/include/fake-addrinfo.h \
|