Searched refs:ap_rep (Results 1 – 9 of 9) sorted by relevance
/freebsd/crypto/krb5/src/kadmin/server/ |
H A D | schpw.c | 28 krb5_data ap_req, ap_rep = empty_data(); in process_chpw_request() local 140 ret = krb5_mk_rep(context, auth_context, &ap_rep); in process_chpw_request() 288 if (ap_rep.length) { in process_chpw_request() 315 if (ap_rep.length) { in process_chpw_request() 316 free(ap_rep.data); in process_chpw_request() 317 ap_rep = empty_data(); in process_chpw_request() 354 ret = alloc_data(rep, 6 + ap_rep.length + cipher.length); in process_chpw_request() 371 *ptr++ = (ap_rep.length>>8) & 0xff; in process_chpw_request() 372 *ptr++ = ap_rep.length & 0xff; in process_chpw_request() 376 if (ap_rep.length) { in process_chpw_request() [all …]
|
/freebsd/crypto/heimdal/lib/krb5/ |
H A D | rd_rep.c | 43 AP_REP ap_rep; in krb5_rd_rep() local 50 ret = decode_AP_REP(inbuf->data, inbuf->length, &ap_rep, &len); in krb5_rd_rep() 53 if (ap_rep.pvno != 5) { in krb5_rd_rep() 58 if (ap_rep.msg_type != krb_ap_rep) { in krb5_rd_rep() 70 &ap_rep.enc_part, in krb5_rd_rep() 107 free_AP_REP (&ap_rep); in krb5_rd_rep()
|
H A D | sendauth.c | 213 krb5_data ap_rep; in krb5_sendauth() local 216 krb5_data_zero (&ap_rep); in krb5_sendauth() 219 &ap_rep); in krb5_sendauth() 223 ret = krb5_rd_rep (context, *auth_context, &ap_rep, in krb5_sendauth() 225 krb5_data_free (&ap_rep); in krb5_sendauth()
|
H A D | changepw.c | 390 krb5_ap_rep_enc_part *ap_rep; in process_reply() local 400 &ap_rep); in process_reply() 404 krb5_free_ap_rep_enc_part (context, ap_rep); in process_reply()
|
/freebsd/crypto/krb5/src/lib/gssapi/krb5/ |
H A D | accept_sec_context.c | 298 krb5_data ap_rep; in kg_accept_dce() local 318 ap_rep.data = input_token->value; in kg_accept_dce() 319 ap_rep.length = input_token->length; in kg_accept_dce() 323 &ap_rep, in kg_accept_dce() 677 krb5_data ap_rep, ap_req; in kg_accept_krb5() local 724 ap_rep.data = 0; in kg_accept_krb5() 1039 if ((code = krb5_mk_rep(context, auth_context, &ap_rep))) { in kg_accept_krb5() 1073 code = data_to_gss(&ap_rep, output_token); in kg_accept_krb5() 1093 token.length = g_token_size(mech_used, ap_rep.length); in kg_accept_krb5() 1101 g_make_token_header(&buf, mech_used, ap_rep.length, KG_TOK_CTX_AP_REP); in kg_accept_krb5() [all …]
|
/freebsd/crypto/krb5/src/lib/krb5/krb/ |
H A D | chpw.c | 113 krb5_data ap_rep, cipher, error; in get_clear_result() local 165 ap_rep = make_data(ptr, aplen); in get_clear_result() 166 ptr += ap_rep.length; in get_clear_result() 167 ret = krb5_rd_rep(context, auth_context, &ap_rep, &ap_rep_enc); in get_clear_result()
|
/freebsd/crypto/heimdal/kpasswd/ |
H A D | kpasswdd.c | 72 krb5_data *ap_rep, in send_reply() argument 81 if (ap_rep) in send_reply() 82 ap_rep_len = ap_rep->length; in send_reply() 108 iov[1].iov_base = ap_rep->data; in send_reply() 109 iov[1].iov_len = ap_rep->length; in send_reply()
|
/freebsd/crypto/krb5/src/lib/krb5/asn.1/ |
H A D | asn1_k_encode.c | 768 DEFAPPTAGGEDTYPE(ap_rep, 15, untagged_ap_rep); 1163 MAKE_ENCODER(encode_krb5_ap_rep, ap_rep); 1164 MAKE_DECODER(decode_krb5_ap_rep, ap_rep);
|
/freebsd/crypto/heimdal/ |
H A D | ChangeLog.2004 | 196 * lib/krb5/sendauth.c (krb5_rd_rep): free ap_rep message earlier
|