Lines Matching defs:length

1597 		(unsigned int)etype->length);
1655 print_buffer_bin((unsigned char *)authz->data, authz->length,
1658 *authz_data = (unsigned char *)malloc(authz->length);
1663 (void) memcpy(*authz_data, authz->data, authz->length);
1664 *authz_data_len = authz->length;
1919 * it is missing the sequence tag and length, so it requires
2066 name.length = gen->d.otherName->value->value.sequence->length;
2072 print_buffer_bin((unsigned char *)name.data, name.length,
2307 key_block->length = keylength;
2314 random_data.length = keybytes;
2322 if (retval && key_block->contents != NULL && key_block->length != 0) {
2323 (void) memset(key_block->contents, 0, key_block->length);
2324 key_block->length = 0;
2537 dh = pkinit_decode_dh_params(&dh, &tmp, dh_params->length);
2746 long length = (long) len;
2754 ai.length = 0;
2765 ai.length = 0;
2778 ai.length = 0;
2792 ai.length = 0;
2844 td_certifiers->length, "/tmp/kdc_td_certifiers");
2858 typed_data[0]->length = td_certifiers->length;
2867 print_buffer_bin((unsigned char *)data->data, data->length,
2871 (*out_data)->length = data->length;
2872 (*out_data)->data = (char *)malloc(data->length);
2873 (void) memcpy((*out_data)->data, data->data, data->length);
2984 algId[0]->parameters.length = buf2_len;
2994 algId[1]->parameters.length = buf3_len;
3004 algId[2]->parameters.length = buf1_len;
3019 algId[0]->parameters.length = buf2_len;
3029 algId[1]->parameters.length = buf3_len;
3044 algId[0]->parameters.length = buf3_len;
3053 encoded_algId->length, "/tmp/kdc_td_dh_params");
3067 typed_data[0]->length = encoded_algId->length;
3076 print_buffer_bin((unsigned char *)data->data, data->length,
3082 (*out_data)->length = data->length;
3083 (*out_data)->data = (char *)malloc(data->length);
3089 (void) memcpy((*out_data)->data, data->data, data->length);
3208 if (algId[i]->algorithm.length != dh_oid.length ||
3209 memcmp(algId[i]->algorithm.data, dh_oid.data, dh_oid.length))
3214 dh = pkinit_decode_dh_params(&dh, &tmp, algId[i]->parameters.length);
3365 /* Get length to wrap the original data with SEQUENCE tag */
3419 /* Get length to wrap the original data with SEQUENCE tag */
3462 /* Get length to wrap the original data with SEQUENCE tag */
3496 long length = indata_len;
3504 c.max = (length == 0)?0:(c.p+length);
3506 asn1_GetSequence(&c,&length);
3638 rdat.length = 0;
3643 * Don't include NULL string terminator in length calculation as this
3647 rdat.length = strlen(id_cryptoctx->PIN);
3676 rdat.length = tip->ulMaxPinLen + 1;
3678 * Note that the prompter function will set rdat.length such that the
3688 (u_char *) rdat.data, rdat.length);
3703 (void) memset(rdat.data, 0, rdat.length);
3739 reply.length = sizeof(tmpbuf);
3822 reply.length = sizeof(tmpbuf);
3853 reply.length = sizeof(tmpbuf);
3861 * reply.length needs to be reset to length of tmpbuf before calling
3864 reply.length = sizeof(tmpbuf);
3868 if (reply.length == 0) {
5097 /* note rdat.length isn't needed in this case */
5101 rdat.length = sizeof(prompt_reply);
5299 /* Checked length */
5745 * of the buffer, and on output it is the actual length
5747 * If buf is NULL, returns the length req'd to hold name
6262 krb5_cas[i]->subjectName.length = 0;
6270 krb5_cas[i]->subjectName.length = len;
6273 krb5_cas[i]->issuerAndSerialNumber.length = 0;
6289 krb5_cas[i]->issuerAndSerialNumber.length = len;
6295 krb5_cas[i]->subjectKeyIdentifier.length = 0;
6313 krb5_cas[i]->subjectKeyIdentifier.length = len;
6398 loids[0]->parameters.length = 0;
6472 krb5_cas[i]->u.caName.length = 0;
6479 krb5_cas[i]->u.caName.length = len;
6484 krb5_cas[i]->u.issuerAndSerial.length = 0;
6494 krb5_cas[i]->u.issuerAndSerial.length = len;
6619 (int)krb5_trusted_certifiers[i]->subjectName.length);
6633 (int)krb5_trusted_certifiers[i]->issuerAndSerialNumber.length);
6649 (int)krb5_trusted_certifiers[i]->subjectKeyIdentifier.length);
6790 * and effective key length. The key length is
6810 if (data_body->length > 0)
6811 bio = BIO_new_mem_buf(data_body->data, data_body->length);
6846 *out_len = s->length;
6851 (void) memcpy(*out, s->data, (size_t) s->length);
6852 (*out)[s->length] = '\0';