Lines Matching full:body
43 EncAPRepPart body; in krb5_mk_rep() local
52 memset (&body, 0, sizeof(body)); in krb5_mk_rep()
54 body.ctime = auth_context->authenticator->ctime; in krb5_mk_rep()
55 body.cusec = auth_context->authenticator->cusec; in krb5_mk_rep()
62 free_EncAPRepPart(&body); in krb5_mk_rep()
67 &body.subkey); in krb5_mk_rep()
69 free_EncAPRepPart(&body); in krb5_mk_rep()
75 body.subkey = NULL; in krb5_mk_rep()
81 ALLOC(body.seq_number, 1); in krb5_mk_rep()
82 if (body.seq_number == NULL) { in krb5_mk_rep()
84 free_EncAPRepPart(&body); in krb5_mk_rep()
87 *(body.seq_number) = auth_context->local_seqnumber; in krb5_mk_rep()
89 body.seq_number = NULL; in krb5_mk_rep()
94 ASN1_MALLOC_ENCODE(EncAPRepPart, buf, buf_size, &body, &len, ret); in krb5_mk_rep()
95 free_EncAPRepPart (&body); in krb5_mk_rep()